Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
aledipa authored Oct 5, 2023
1 parent 8092f57 commit 389c1cd
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-slim
FROM python:3.11

WORKDIR /app
COPY ./requirements.txt /app
COPY ./src/* /app

RUN apt update && apt install gcc python3-dev -y
RUN apt update && apt install gcc -y
RUN pip3 install -r requirements.txt

ENV PORT=5500
Expand Down

0 comments on commit 389c1cd

Please sign in to comment.