Skip to content

Commit

Permalink
Use Python 3.9 base image instead of 3.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
andmat900 committed Feb 20, 2024
1 parent 56d94a7 commit 59fadf6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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

Expand Down

0 comments on commit 59fadf6

Please sign in to comment.