This repository has been archived on 2026-02-22. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Javelina/Dockerfile
T
Renovate Verified 8bfdd2479a
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"]