fixing Dockerfile + update alpine and python

This commit is contained in:
Emilien 2024-11-17 15:54:23 +01:00
parent 2f683a1c7a
commit 7e78654e6d

View file

@ -1,4 +1,4 @@
FROM python:3.12-alpine3.19
FROM python:3.13-alpine3.20
# Install dependencies
RUN apk add --no-cache \
@ -13,7 +13,8 @@ RUN apk add --no-cache \
chromium-chromedriver
WORKDIR /app
COPY index.py requirements.txt ./
COPY potoken-generator.py requirements.txt ./
COPY potoken_generator/ ./potoken_generator/
RUN pip install --no-cache-dir -r requirements.txt