diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..955cabb --- /dev/null +++ b/Dockerfile @@ -0,0 +1,9 @@ +FROM ubuntu +RUN apt-get update -y && \ + apt-get install -y python3-pip python3-dev +COPY ./requirements.txt /requirements.txt +WORKDIR / +RUN pip3 install -r requirements.txt +COPY . / +ENTRYPOINT [ "python3" ] +CMD [ "domained.py" ]