Compare commits

..

No commits in common. "1fa69c334b3e4837537b99b73adb15f7b65dae2e" and "3be39fad76bc00443f0a39c7666b0d1062f00916" have entirely different histories.

View File

@ -1,10 +1,10 @@
# Base image # Base image
FROM python:3.9.5-buster FROM python
# Create directories and copy files # Create directories and copy files
RUN echo 'Creating directory and copying files' RUN echo 'Creating directory and copying files'
RUN mkdir /crawler RUN mkdir /crawler
COPY . /crawler ADD . /crawler
WORKDIR /crawler WORKDIR /crawler
# Install dependencies # Install dependencies