11 lines
144 B
Docker
11 lines
144 B
Docker
|
FROM ubuntu:latest
|
||
|
|
||
|
RUN apt-get update && apt-get install -y python3 python3-pip
|
||
|
|
||
|
WORKDIR /app
|
||
|
|
||
|
COPY . .
|
||
|
|
||
|
RUN pip3 install -r requirements.txt
|
||
|
|