]> Untitled Git - web-gallery.git/blobdiff - navigator/Dockerfile
Updated version to 1.4.0
[web-gallery.git] / navigator / Dockerfile
index 6591257b71010496cb10a8b0d023ffd91e415332..d5a99f382a52737fe7109b295626a04b73fa6101 100644 (file)
@@ -6,8 +6,7 @@ ENV FLASK_PORT=5000
 
 EXPOSE 5000
 
-RUN apk update && \
-    apk add --no-cache gcc musl-dev linux-headers libpq-dev python3-dev
+RUN apk update
 
 WORKDIR /app
 COPY ./requirements.txt /app
@@ -15,5 +14,6 @@ RUN pip install -r requirements.txt
 
 COPY ./app/app.py     /app
 COPY ./app/templates/ /app/templates/
+COPY ./app/static/    /app/static/
 
 CMD ["flask", "run"]