From 8dfee259d63f79ad8d1289b306970eb177f5be00 Mon Sep 17 00:00:00 2001 From: Tim Date: Sat, 11 Apr 2020 09:04:17 +0200 Subject: [PATCH] Use latest python alpine docker image for build and production --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0840fd9a..8ac22866 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ ARG BUILD_DATE # First stage -FROM python:3.8-rc-alpine as builder +FROM python:alpine as builder # Install deps COPY requirements.txt /tmp @@ -18,7 +18,7 @@ RUN pip install --prefix="/install" --no-warn-script-location -r /tmp/requiremen ## Second stage -FROM python:3.8-rc-alpine +FROM python:alpine ENV DEBUG False ENV DB_NAME /data/hc.sqlite