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"]