File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Build environment has gcc and develop header files.
2
2
# 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
4
4
ENV DEBIAN_FRONTEND=noninteractive \
5
5
PYTHONUNBUFFERED=1 \
6
6
PIP_NO_CACHE_DIR=off
@@ -16,7 +16,7 @@ RUN find /usr/local/lib/python3.8/site-packages/ -name '*.po' -delete && \
16
16
find /usr/local/lib/python3.8/site-packages/tinymce/ -regextype posix-egrep -not -regex '.*/langs/(en|nl).*\. js' -wholename '*/langs/*.js' -delete
17
17
18
18
# # Node builder
19
- FROM node:12-stretch as frontend-build
19
+ FROM node:14-buster as frontend-build
20
20
RUN mkdir -p /app/src
21
21
WORKDIR /app/src
22
22
COPY src/package.json src/package-lock.json /app/src/
@@ -26,7 +26,7 @@ COPY src/frontend/ /app/src/frontend/
26
26
RUN npm run gulp
27
27
28
28
# Start runtime container
29
- FROM python:3.8-slim-stretch
29
+ FROM python:3.8-slim-buster
30
30
ENV DEBIAN_FRONTEND=noninteractive \
31
31
PYTHONUNBUFFERED=1 \
32
32
PIP_NO_CACHE_DIR=off \
You can’t perform that action at this time.
0 commit comments