Skip to content

Commit

Permalink
fix python image on dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
nato-re committed Feb 1, 2024
1 parent 07769df commit 1d524a6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM python:3.13.0a2-alpine3.19

RUN python -m pip install -r requirements.txt
FROM python

WORKDIR /app
COPY . /app

RUN python -m pip install -r requirements.txt

EXPOSE 80

ENTRYPOINT [ "python app.py" ]

0 comments on commit 1d524a6

Please sign in to comment.