mrhttp.dockerfile 133 B

12345678910111213
  1. FROM python:3.8.12
  2. ADD ./ /mrhttp
  3. WORKDIR /mrhttp
  4. RUN pip3 install -r /mrhttp/requirements.txt
  5. EXPOSE 8080
  6. CMD python3 app.py