autojanet/intake/Dockerfile
Zoë 2a00b25840
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
feat: intake service - HTTP endpoint to submit tasks to Janet
2026-05-30 20:26:32 -07:00

14 lines
251 B
Docker

FROM python:3.12-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY main.py .
RUN useradd -m -u 1000 intake
USER intake
EXPOSE 8080
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8080"]