DPZC_Ola/Zadanie_5.2_5.3/Dockerfile

7 lines
174 B
Docker
Raw Normal View History

2023-01-28 22:13:05 +01:00
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