Files
rbxlogger/Dockerfile

9 lines
288 B
Docker

FROM python:3.12-slim
WORKDIR /app
COPY api/requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY api/app/ ./app/
COPY api/static/ ./static/ # <-- Add this line
RUN mkdir -p /data
EXPOSE 8000
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000"]