mirror of
https://github.com/Fluffy-Bean/GameExpo23.git
synced 2025-06-19 23:10:36 +00:00
Add highscores server
This commit is contained in:
parent
0d28b50944
commit
b6dc53dfaa
10 changed files with 192 additions and 6 deletions
8
Highscore-Server/Dockerfile
Normal file
8
Highscore-Server/Dockerfile
Normal file
|
@ -0,0 +1,8 @@
|
|||
# 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"]
|
Loading…
Add table
Add a link
Reference in a new issue