mirror of
https://github.com/wolfswolke/DeathGarden_API_Rebirth.git
synced 2026-03-21 17:54:09 -05:00
Added Dockerfile
This commit is contained in:
parent
27296b5c3e
commit
3033f1dcab
13
Dockerfile
Normal file
13
Dockerfile
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
FROM python:3.10-alpine
|
||||
COPY . /app
|
||||
COPY requirements.txt /app/src
|
||||
|
||||
WORKDIR /app/src
|
||||
|
||||
RUN pip install -r requirements.txt
|
||||
|
||||
EXPOSE 8080
|
||||
|
||||
HEALTHCHECK CMD curl --fail http://localhost:8080/
|
||||
|
||||
ENTRYPOINT ["python", "start_app.py"]
|
||||
Loading…
Reference in New Issue
Block a user