From 59fadf64cad7032be392aa6dbef89e01e5f09afa Mon Sep 17 00:00:00 2001 From: Andrei Matveyeu Date: Tue, 20 Feb 2024 11:04:15 +0100 Subject: [PATCH] Use Python 3.9 base image instead of 3.9.0 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 32a6d36..23f12c9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,10 @@ -FROM python:3.9.0-buster AS build +FROM python:3.9-buster AS build COPY . /src WORKDIR /src/python RUN python3 setup.py bdist_wheel -FROM python:3.9.0-slim-buster +FROM python:3.9-slim-buster ARG TZ ENV TZ=$TZ