Skip to content

Commit

Permalink
chore: specify python3.10 in Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Keldos-Li committed Apr 10, 2024
1 parent 094e66e commit c759290
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,4 +1,4 @@
FROM python:3.9-slim-buster as builder
FROM python:3.10-slim-buster as builder
RUN apt-get update \
&& apt-get install -y build-essential \
&& apt-get clean \
Expand All @@ -8,7 +8,7 @@ COPY requirements_advanced.txt .
RUN pip install --user --no-cache-dir -r requirements.txt
# RUN pip install --user --no-cache-dir -r requirements_advanced.txt

FROM python:3.9-slim-buster
FROM python:3.10-slim-buster
LABEL maintainer="iskoldt"
COPY --from=builder /root/.local /root/.local
ENV PATH=/root/.local/bin:$PATH
Expand Down

0 comments on commit c759290

Please sign in to comment.