feat: add dockerfile

This commit is contained in:
Benex254
2024-08-05 09:47:05 +03:00
parent 2f04cfd6e3
commit 81c5188e4c

10
Dockerfile Normal file
View File

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