anydlbot / Dockerfile
imseldrith's picture
Update Dockerfile
df2595f
raw
history blame contribute delete
165 Bytes
FROM python:3.10
WORKDIR /app
RUN chmod 777 /app
COPY requirements.txt .
RUN pip3 install --no-cache-dir -r requirements.txt
COPY . .
CMD nohup python3 bot.py &