diff --git a/Dockerfile b/Dockerfile index 97f0865..e62ea81 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,11 @@ -FROM alpine:3.11 +FROM alpine:3.16.4 # Installing required packages -RUN apk add --update --no-cache \ - python3 +FROM alpine/doctl +ENV PYTHONUNBUFFERED=1 +RUN apk add --update --no-cache python3 && ln -sf python3 /usr/bin/python +RUN python3 -m ensurepip +RUN pip3 install --no-cache --upgrade pip setuptools # Install package WORKDIR /code