Files
Javelina/Dockerfile
Renovate 8bfdd2479a
All checks were successful
Test / build (pull_request) Successful in 41s
Test / build (push) Successful in 35s
Update python Docker tag to v3.14
2025-10-08 01:10:57 +03:00

14 lines
221 B
Docker

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