Files
popa_minecraft_launcher_api/dockerfile
DIKER0K 7131f6613e
All checks were successful
Build and Deploy / deploy (push) Successful in 11s
fix :(
2025-07-21 01:06:51 +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", "3000"]