Files
popa_minecraft_launcher_api/dockerfile
DIKER0K d2084e73ee
All checks were successful
Build and Deploy / deploy (push) Successful in 11s
last fix
2025-07-21 01:00:28 +05:00

16 lines
213 B
Plaintext

FROM python:3.10-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
VOLUME /app/static
EXPOSE 3000
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "5000"]