two / Dockerfile
VLADIMIROFF777's picture
Update Dockerfile
3bb29d9 verified
raw
history blame contribute delete
221 Bytes
FROM python:3.10
WORKDIR /app
COPY requirements.txt requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
RUN mkdir -p /app/logs
RUN chmod 777 /app/logs
EXPOSE 7860
CMD ["python", "funpay_loop.py"]