Files
DomGod/Dockerfile

17 lines
287 B
Docker
Raw Normal View History

FROM python:3.12-slim
WORKDIR /app
RUN apt-get update && apt-get install -y \
curl gcc libssl-dev && \
rm -rf /var/lib/apt/lists/*
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY app/ ./app/
EXPOSE 6677 7788
CMD ["python", "-m", "app.main"]