diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..8956f6c --- /dev/null +++ b/Dockerfile @@ -0,0 +1,7 @@ +FROM python:3 + +RUN mkdir -p /app/output +WORKDIR /app +COPY ./coles.py ./woolies.py ./requirements.txt ./ +RUN pip3 install -r requirements.txt +ENTRYPOINT [ "python3" ] \ No newline at end of file