Files
space-booking/backend/Dockerfile
Claude Agent 1fdac3fb57 deploy
2026-03-04 09:45:18 +00:00

18 lines
305 B
Docker

FROM python:3.12-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
RUN chmod +x entrypoint.sh
RUN mkdir -p uploads
EXPOSE 8000
ENTRYPOINT ["./entrypoint.sh"]
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000"]