pyc2/server/Dockerfile
2024-09-07 15:22:06 -04:00

11 lines
167 B
Docker

FROM python:3.10-alpine
WORKDIR /app
EXPOSE 9999
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY src /app
CMD ["python", "main.py"]