From e10e983b0d1f66c7b038f69c00373a0f2d40ebca Mon Sep 17 00:00:00 2001 From: friendly Friend Date: Tue, 14 Mar 2023 10:42:15 -0700 Subject: [PATCH] immich env vars added alpine updated from 3.11 to 3.16.3 --- Dockerfile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) 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