Files
Javelina/Dockerfile
Renovate 8d10901467
All checks were successful
Test / build (pull_request) Successful in 36s
Test / build (push) Successful in 35s
Update python Docker tag to v3.13
2025-07-29 01:24:03 +03:00

14 lines
221 B
Docker

# WARNING: Docker deployment is not officially supported (yet)
FROM python:3.13-slim
LABEL authors="Javelina"
COPY . /app/
WORKDIR /app
RUN pip install -r requirements.txt
EXPOSE 8000/tcp
CMD ["uvicorn", "main:app"]