10 lines
231 B
Docker
10 lines
231 B
Docker
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
|
|
COPY mirrortea /app
|
|
ENTRYPOINT ["/app/mirrortea"]
|