dpzc5.2-5.3/Dockerfile
Adrian Charkiewicz 03f7dc6471 working dockerfile
2023-02-15 22:24:33 +01:00

8 lines
175 B
Docker

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