FROM python:3.9

EXPOSE 8082

RUN pip install Flask requests

WORKDIR /work

COPY usr_service.py ./

CMD ["python", "usr_service.py"]