Spaces:
Paused
Paused
File size: 359 Bytes
1794757 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | FROM python:3.12-slim
ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1
ENV TRENCHES_ENTITIES_ROOT=/app/entities
WORKDIR /app
COPY backend/pyproject.toml backend/README.md ./backend/
COPY backend/src ./backend/src
COPY entities ./entities
WORKDIR /app/backend
RUN pip install --no-cache-dir .
EXPOSE 8000
CMD ["python", "-m", "trenches_env.server"]
|