Files
Javelina/Dockerfile

14 lines
221 B
Docker
Raw Normal View History

2025-07-28 23:46:27 +02:00
# WARNING: Docker deployment is not officially supported (yet)
2025-10-08 01:10:57 +03:00
FROM python:3.14-slim
2025-07-28 23:46:27 +02:00
LABEL authors="Javelina"
COPY . /app/
WORKDIR /app
RUN pip install -r requirements.txt
EXPOSE 8000/tcp
CMD ["uvicorn", "main:app"]