This commit is contained in:
Kameron Kenny 2025-01-02 19:16:08 -05:00
parent 30ddcfdc1b
commit 6c8ef3be9a
1 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ WORKDIR /app
COPY ./index.html ./index.html
# Expose the port you want to serve on
EXPOSE 8000
EXPOSE 80
# Start the Python server
CMD ["python", "-m", "http.server", "8000"]
CMD ["python", "-m", "http.server", "80"]