FROM python:3.9-alpine COPY . /app/ WORKDIR /app RUN pip3 install -r requirements.txt EXPOSE 80 ENTRYPOINT ["python3", "-u", "service.py"]