interlink-bot / Dockerfile
imseldrith's picture
Update Dockerfile
26315d9 verified
FROM python:3.11-slim
WORKDIR /app
ENV PYTHONUNBUFFERED=1 \
PIP_DISABLE_PIP_VERSION_CHECK=1 \
PIP_NO_CACHE_DIR=1 \
USE_PROXY=true \
ROTATE_PROXY=true \
TOKENS_JSON=[] \
PROXIES=
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["python", "app.py"]