File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 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
44ENV 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
2020RUN mkdir -p /app/src
2121WORKDIR /app/src
2222COPY src/package.json src/package-lock.json /app/src/
@@ -26,7 +26,7 @@ COPY src/frontend/ /app/src/frontend/
2626RUN npm run gulp
2727
2828# Start runtime container
29- FROM python:3.8-slim-stretch
29+ FROM python:3.8-slim-buster
3030ENV DEBIAN_FRONTEND=noninteractive \
3131 PYTHONUNBUFFERED=1 \
3232 PIP_NO_CACHE_DIR=off \
You can’t perform that action at this time.
0 commit comments