Files
northern-lights-server/Dockerfile
2025-12-17 23:26:01 +01:00

9 lines
132 B
Docker

FROM python:latest
WORKDIR /server
COPY requirements.txt .
RUN pip3 install -r requirements.txt
CMD ["python3", "src/server.py"]