diff options
Diffstat (limited to 'docker')
-rw-r--r-- | docker/base.Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docker/base.Dockerfile b/docker/base.Dockerfile index 1edff49..7334cf4 100644 --- a/docker/base.Dockerfile +++ b/docker/base.Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.10 as builder +FROM python:3.8.0-alpine3.10 as builder RUN apk add --no-cache --update \ bison~=3.3 \ bsd-compat-headers~=0.7 \ @@ -16,7 +16,7 @@ RUN git clone https://github.com/google/nsjail.git /nsjail \ WORKDIR /nsjail RUN make -FROM python:3.7.4-alpine3.10 +FROM python:3.8.0-alpine3.10 ENV PIP_NO_CACHE_DIR=false RUN apk add --no-cache --update \ libnl3~=3.4 \ |