Files
hoi4botdc/Dockerfile
SimolZimol b9383efe89 new file: .env.example
new file:   .gitignore
	new file:   Dockerfile
	new file:   README.md
	new file:   app.py
	new file:   requirements.txt
2025-10-26 00:05:38 +02:00

20 lines
337 B
Docker

FROM python:3.10-slim
WORKDIR /app
RUN apt-get update && apt-get install -y \
libffi-dev \
libnacl-dev \
python3-dev \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
ENV DISCORD_TOKEN=$DISCORD_TOKEN
CMD ["python", "app.py"]