mirror of
https://github.com/wolfswolke/DeathGarden_API_Rebirth.git
synced 2026-08-19 07:36:28 -05:00
Added Dockerfile
This commit is contained in:
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"]
|
||||
Reference in New Issue
Block a user