mirror of
https://github.com/Murasame-Dev/McStatus-API.git
synced 2025-12-16 13:17:43 +00:00
9 lines
No EOL
162 B
Docker
9 lines
No EOL
162 B
Docker
FROM python:3.9
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
RUN pip install gunicorn && pip install -r requirements.txt
|
|
EXPOSE 8000
|
|
|
|
CMD ["gunicorn", "-b", "0.0.0.0:8000", "app:app"] |