Skip to content

Commit 746caf2

Browse files
committed
Bumping parent docker images
1 parent 0d64c07 commit 746caf2

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Dockerfile.busybox

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
FROM busybox:1.31.0-musl
1+
FROM busybox:1.31.1-musl
22
ENTRYPOINT ["/bin/echo", "hello world"]

Dockerfile.django

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
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
1111
WORKDIR /app
1212
RUN \
1313
apt-get -y update && \
@@ -24,7 +24,7 @@ RUN \
2424
COPY requirements.txt ./
2525
RUN 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
2828
WORKDIR /app
2929
RUN \
3030
apt-get -y update && \

Dockerfile.nginx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
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
77
WORKDIR /app
88
RUN \
99
apt-get -y update && \
@@ -55,7 +55,7 @@ RUN \
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
5959
COPY --from=collectstatic /app/static/ /usr/share/nginx/html/static/
6060
COPY wsgi_params nginx/nginx.conf /etc/nginx/
6161
COPY docker/entrypoint-nginx.sh nginx/*.cer nginx/*.key /

0 commit comments

Comments
 (0)