feat: change port to 8000
All checks were successful
deploy to v2 / test (push) Successful in 2m30s
deploy to v2 / deploy (push) Successful in 1m58s

This commit is contained in:
Stepan Vladovskii 2024-02-13 16:42:16 -03:00
parent 125fa2b86d
commit 41add50256

View File

@ -5,7 +5,7 @@ FROM python:slim
WORKDIR /app
# Add metadata to the image to describe that the container is listening on port 80
EXPOSE 80
EXPOSE 8000
# Copy the current directory contents into the container at /app
COPY . /app