7 行
196 B
Docker
7 行
196 B
Docker
FROM ubuntu
|
|
RUN apt-get update -y
|
|
RUN apt install wget -y
|
|
RUN apt install python3 -y
|
|
RUN apt install python3-pip -y
|
|
RUN pip3 install flask
|
|
RUN wget etud.insa-toulouse.fr/~benassai/microservice.py
|