diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..131c144 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,7 @@ +FROM python:3.8 +COPY api.py requirements.txt ./ +RUN apt-get update +RUN apt-get install -y default-jdk +RUN pip install -r requirements.txt +EXPOSE 80:8000/tcp +CMD python api.py