10 lines
279 B
Docker
10 lines
279 B
Docker
FROM ubuntu:22.10
|
|
RUN mkdir -p /app/mirrortea/
|
|
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/mirrortea/
|
|
ENTRYPOINT ["/usr/bin/python3", "/app/mirrortea"]
|