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