threads-bot-v1 / Dockerfile
afluakd9's picture
Update Dockerfile
cf2f0ae verified
raw
history blame contribute delete
178 Bytes
FROM python:3.9
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY . .
CMD ["python", "main.py"]