Skip to content

Commit

Permalink
fixing Dockerfile + update alpine and python
Browse files Browse the repository at this point in the history
  • Loading branch information
unixfox committed Nov 17, 2024
1 parent 2f683a1 commit 7e78654
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.12-alpine3.19
FROM python:3.13-alpine3.20

# Install dependencies
RUN apk add --no-cache \
Expand All @@ -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

Expand Down

0 comments on commit 7e78654

Please sign in to comment.