mirror of
https://github.com/Fluffy-Bean/GameExpo23.git
synced 2025-06-03 16:03:12 +00:00
8 lines
No EOL
220 B
Docker
8 lines
No EOL
220 B
Docker
# syntax=docker/dockerfile:1
|
|
FROM python:3.10
|
|
WORKDIR /app
|
|
COPY requirements.txt requirements.txt
|
|
RUN pip install -r requirements.txt
|
|
EXPOSE 5000
|
|
COPY server server
|
|
CMD ["flask", "run", "--port=5000", "--host=localhost"] |