Compare commits

..

3 Commits

Author SHA1 Message Date
1fa69c334b Merging develop 2021-06-06 22:53:24 +02:00
Patrick
e760247866
Merge pull request #76 from Mueller-Patrick/BETTERZON-139
BETTERZON-139: Fixing Codacy Error Prone Issues
2021-06-06 22:41:31 +02:00
f3f1cba9ea BETTERZON-139: Fixing Codacy Error Prone Issues 2021-06-06 22:38:28 +02:00

View File

@ -1,10 +1,10 @@
# Base image # Base image
FROM python FROM python:3.9.5-buster
# 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
ADD . /crawler COPY . /crawler
WORKDIR /crawler WORKDIR /crawler
# Install dependencies # Install dependencies