Skip to content

Commit

Permalink
Updated Docker file
Browse files Browse the repository at this point in the history
  • Loading branch information
danilyef committed Aug 16, 2024
1 parent 99a21ba commit 0e4d054
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions homework_2/task1/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
FROM python:3.11-alpine

WORKDIR /app

COPY . /app

COPY requirements.txt requirements.txt
RUN pip install -r requirements.txt

COPY . .

EXPOSE 80

CMD ["python", "app.py"]

0 comments on commit 0e4d054

Please sign in to comment.