saas-chmurki/Dockerfile
2023-01-27 21:36:03 +01:00

9 lines
176 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