tst / Dockerfile
ahmetalper's picture
Update Dockerfile
5db73ce verified
raw
history blame
No virus
268 Bytes
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"]