Files
cardpuller/Dockerfile
T
2026-05-09 08:45:23 -05:00

21 lines
280 B
Docker

FROM python:3.12-alpine
ENV PYTHONDONTWRITEBYTECODE=1 \
PYTHONUNBUFFERED=1
WORKDIR /app
RUN pip install --no-cache-dir \
fastapi \
uvicorn \
httpx \
pyyaml
COPY server.py .
COPY static/ static/
VOLUME /app/outputs
EXPOSE 8000
CMD ["python", "server.py"]