FROM selenium/standalone-chrome:latest WORKDIR /code COPY ./requirements.txt /code/requirements.txt RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt RUN mkdir downloaded_files && chmod 777 downloaded_files COPY . . CMD ["python", "app/main.py"]