From 81c5188e4c2a764d1cd78635b5ccf1cbb9961455 Mon Sep 17 00:00:00 2001 From: Benex254 Date: Mon, 5 Aug 2024 09:47:05 +0300 Subject: [PATCH] feat: add dockerfile --- Dockerfile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..27e76fe --- /dev/null +++ b/Dockerfile @@ -0,0 +1,10 @@ +FROM ubuntu +RUN apt-get update +RUN apt-get -y install python3 +RUN apt-get update +RUN apt-get -y install pipx +RUN pipx ensurepath +COPY . /fastanime +WORKDIR /fastanime +RUN pipx install . +CMD ["bash"]