Dungeon/backend/Dockerfile.backend
2024-10-29 21:00:35 +00:00

13 lines
160 B
Docker

FROM python:3.11-slim-buster
ENV PYTHONPATH=/usr/local/lib
COPY . /app
WORKDIR /app
RUN pip3 install -r requirements.txt
CMD ["/bin/sh", "entrypoint.sh"]