9 lines
121 B
Docker
9 lines
121 B
Docker
FROM ubuntu:focal
|
|
|
|
RUN apt update && apt install -y python3 python3-pip
|
|
|
|
COPY . .
|
|
|
|
RUN pip3 install -r requirements.txt
|
|
|