Files
ARC/backend/Dockerfile
Chevallier a7d8914e25 first push
2026-06-12 18:16:58 +02:00

23 lines
435 B
Docker

FROM python:3.13.13
WORKDIR /workspace
RUN apt-get update && apt-get install -y --no-install-recommends \
build-essential \
&& rm -rf /var/lib/apt/lists/*
COPY requirements.txt .
RUN pip install --no-cache-dir \
--trusted-host pypi.org \
--trusted-host pypi.python.org \
--trusted-host files.pythonhosted.org \
-r requirements.txt
COPY . .
RUN chmod +x start.sh
EXPOSE 8000
EXPOSE 8001
CMD ["./start.sh"]