1
0
Fork 0
mirrortea/Dockerfile

8 lines
181 B
Docker
Raw Normal View History

2023-01-07 19:51:14 +00:00
FROM ubuntu:22.10
RUN mkdir /app
WORKDIR /app
RUN apt-get update --yes
RUN apt-get install --yes python3 python3-pip
COPY requirements.txt /app
RUN pip3 install -r requirements.txt