This repository has been archived on 2023-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
MirrorTea/Dockerfile

11 lines
312 B
Docker
Raw Permalink Normal View History

2023-01-07 19:51:14 +00:00
FROM ubuntu:22.10
2023-01-08 20:39:15 +00:00
RUN mkdir -p /app/data/ /app/mirrortea/
2023-01-07 19:51:14 +00:00
WORKDIR /app
RUN apt-get update --yes
RUN apt-get install --yes python3 python3-pip
2023-01-08 13:17:37 +00:00
COPY requirements.txt /app/
2023-01-07 19:51:14 +00:00
RUN pip3 install -r requirements.txt
2023-01-08 13:17:37 +00:00
COPY mirrortea/* /app/mirrortea/
2023-01-14 21:45:12 +00:00
COPY config.yml /app/
2023-01-08 13:17:37 +00:00
ENTRYPOINT ["/usr/bin/python3", "/app/mirrortea"]