File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1- FROM busybox:1.31.0 -musl
1+ FROM busybox:1.31.1 -musl
22ENTRYPOINT ["/bin/echo", "hello world"]
Original file line number Diff line number Diff line change 77# Using 3.5.7 to avoid compatibility issues that may be introduced by python 3.6 and 3.7.
88# Please upgrade before end-of-life in september 2020!
99# Ref: https://devguide.python.org/#branchstatus
10- FROM python:3.5.7 -buster@sha256:4598d4365bb7a8628ba840f87406323e699c4da01ae6f926ff33787c63230779 as build
10+ FROM python:3.5.9 -buster@sha256:1baef6be00b82fbd77f1b60ab227a1dbede6f23825ce1b7f1e9c6f7d1469a45c as build
1111WORKDIR /app
1212RUN \
1313 apt-get -y update && \
2424COPY requirements.txt ./
2525RUN pip3 wheel --wheel-dir=/tmp/wheels -r ./requirements.txt
2626
27- FROM python:3.5.7 -slim-buster@sha256:127fee645393d311c7fbc5e8c2e5034f10a4e66b47c9273d4dbe5da2926fc3f2
27+ FROM python:3.5.9 -slim-buster@sha256:dfb042910e4ef352b5c6aa223031ce768f53f4f1aacf95936152e5508162bcb0
2828WORKDIR /app
2929RUN \
3030 apt-get -y update && \
Original file line number Diff line number Diff line change 33# The code for the build image should be idendical with the code in
44# Dockerfile.django to use the caching mechanism of Docker.
55
6- FROM python:3.5.7 -buster@sha256:4598d4365bb7a8628ba840f87406323e699c4da01ae6f926ff33787c63230779 as build
6+ FROM python:3.5.9 -buster@sha256:1baef6be00b82fbd77f1b60ab227a1dbede6f23825ce1b7f1e9c6f7d1469a45c as build
77WORKDIR /app
88RUN \
99 apt-get -y update && \
5555 python3 manage.py collectstatic --noinput && \
5656 true
5757
58- FROM nginx:1.17 .2 @sha256:eb3320e2f9ca409b7c0aa71aea3cf7ce7d018f03a372564dbdb023646958770b
58+ FROM nginx:1.17 .7 @sha256:89a42c3ba15f09a3fbe39856bddacdf9e94cd03df7403cad4fc105088e268fc9
5959COPY --from=collectstatic /app/static/ /usr/share/nginx/html/static/
6060COPY wsgi_params nginx/nginx.conf /etc/nginx/
6161COPY docker/entrypoint-nginx.sh nginx/*.cer nginx/*.key /
You can’t perform that action at this time.
0 commit comments