FROM python:3.9 EXPOSE 8081 RUN pip install Flask requests WORKDIR /work COPY msg_service.py ./ CMD ["python", "msg_service.py"]