From 5e849d31c6efb863a556af47168c121875ae3f5d Mon Sep 17 00:00:00 2001 From: MrPayne Date: Wed, 11 Mar 2020 20:13:15 +0000 Subject: [PATCH] Create Dockerfile --- Dockerfile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..18ea466 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,8 @@ +FROM python:3.7-alpine +COPY requirements.txt / +COPY . /catscan +RUN apk add --update --no-cache g++ gcc libxslt-dev +RUN apk add --no-cache gcc musl-dev linux-headers +RUN pip3 install -r /requirements.txt +WORKDIR /catscan +CMD ["python", "./catscan.py"]