From 8870941370abf928980100d125e49cd0e287af4c Mon Sep 17 00:00:00 2001 From: Twooey Date: Wed, 3 Aug 2022 14:26:36 -0400 Subject: [PATCH] Updating docker to use python 3.10 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index e45b8eb1..a07752c6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ # * MYSQL_PASSWORD - database password (the docker entrypoint sets MYSQL_PASS to this value for app compatibility) ### Build stage, to avoid leaving dev dependencies in the final image -FROM python:3.9-slim-buster AS build +FROM python:3.10-slim-buster AS build WORKDIR /build @@ -22,7 +22,7 @@ COPY requirements.txt /build/ RUN pip install --user --no-cache-dir -r requirements.txt ### Final image -FROM python:3.9-slim-buster +FROM python:3.10-slim-buster WORKDIR /srv RUN useradd django