Facebook_automation / Dockerfile
afluakd9's picture
Update Dockerfile
ac8e22b verified
raw
history blame contribute delete
237 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 . .
# Permissions fix (chmod 777)
RUN chmod -R 777 /code
CMD ["python", "app.py"]