10000 minor update to non-alpine Dockerfile · robpco/docker-nginx-uwsgi-flask@ed42fa5 · GitHub
[go: up one dir, main page]

Skip to content
This repository was archived by the owner on Dec 17, 2023. It is now read-only.

Commit ed42fa5

Browse files
committed
minor update to non-alpine Dockerfile
1 parent 2c96974 commit ed42fa5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

python2.7/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM robpco/nginx-uwsgi:python2.7
22

3-
RUN pip install flask
3+
RUN pip install --no-cache-dir --disable-pip-version-check flask
44

55
# Enable unlimited filesize uploads (restore nginx default by setting to 1m)
66
ENV NGINX_MAX_UPLOAD 0

python3.5/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM robpco/nginx-uwsgi:python3.5
22

3-
RUN pip install flask
3+
RUN pip install --no-cache-dir --disable-pip-version-check flask
44

55
# Enable unlimited filesize uploads (restore nginx default by setting to 1m)
66
ENV NGINX_MAX_UPLOAD 0

python3.6/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM robpco/nginx-uwsgi:python3.6
22

3-
RUN pip install flask
3+
RUN pip install --no-cache-dir --disable-pip-version-check flask
44

55
# Enable unlimited filesize uploads (restore nginx default by setting to 1m)
66
ENV NGINX_MAX_UPLOAD 0

0 commit comments

Comments
 (0)
0