create uploads volume in dockerfile
Build and Push Docker Container / build-and-push (push) Successful in 1m59s

This commit is contained in:
2025-10-25 16:22:22 +02:00
parent 340d72ca56
commit f65ef26d42
+1
View File
@@ -8,6 +8,7 @@ RUN apt-get update && \
# Install app
COPY . /app
WORKDIR /app
VOLUME ["/app/uploads"]
# Install dependencies
RUN pip install --upgrade pip && \