Skip to content

Commit edcef8c

Browse files
committed
Switch to Python 3.8
1 parent 169aa75 commit edcef8c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Build environment has gcc and develop header files.
22
# The installed files are copied to the smaller runtime container.
3-
FROM python:3.8-stretch as build-image
3+
FROM python:3.8-buster as build-image
44
ENV DEBIAN_FRONTEND=noninteractive \
55
PYTHONUNBUFFERED=1 \
66
PIP_NO_CACHE_DIR=off
@@ -16,7 +16,7 @@ RUN find /usr/local/lib/python3.8/site-packages/ -name '*.po' -delete && \
1616
find /usr/local/lib/python3.8/site-packages/tinymce/ -regextype posix-egrep -not -regex '.*/langs/(en|nl).*\.js' -wholename '*/langs/*.js' -delete
1717

1818
## Node builder
19-
FROM node:12-stretch as frontend-build
19+
FROM node:14-buster as frontend-build
2020
RUN mkdir -p /app/src
2121
WORKDIR /app/src
2222
COPY src/package.json src/package-lock.json /app/src/
@@ -26,7 +26,7 @@ COPY src/frontend/ /app/src/frontend/
2626
RUN npm run gulp
2727

2828
# Start runtime container
29-
FROM python:3.8-slim-stretch
29+
FROM python:3.8-slim-buster
3030
ENV DEBIAN_FRONTEND=noninteractive \
3131
PYTHONUNBUFFERED=1 \
3232
PIP_NO_CACHE_DIR=off \

0 commit comments

Comments
 (0)