expose 8080

This commit is contained in:
William Lane
2023-03-19 19:30:38 -07:00
parent ee56c8700d
commit b03ad67f32

View File

@@ -13,5 +13,8 @@ ADD . .
# Install any needed packages specified in requirements.txt # Install any needed packages specified in requirements.txt
RUN pip install -r requirements.txt RUN pip install -r requirements.txt
# Make port 80 available to the world outside this container
EXPOSE 8080
# Run run.py when the container launches # Run run.py when the container launches
CMD ["python", "run.py"] CMD ["python", "run.py"]