From 46275a43ec99cb6bc17351cb5327ccc9c1393452 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jelmer=20Vernoo=C4=B3?= Date: Tue, 13 Sep 2022 06:30:14 +0100 Subject: [PATCH] Add a docker file. --- .dockerignore | 2 ++ Dockerfile | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 .dockerignore diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000000..d21411e138 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,2 @@ +Dockerfile +*~ diff --git a/Dockerfile b/Dockerfile index 91be827f2e..83ff60f8d7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,6 +3,6 @@ RUN apt -y update && apt -y install cython3 python3-setuptools python3-setuptool COPY . . RUN python3 setup.py install FROM debian:sid +RUN apt -y update && apt -y install python3 python3-configobj python3-dulwich python3-urllib3 python3-merge3 python3-patiencediff python3-fastbencode python3-yaml COPY --from=build /usr/local /usr/local -ENTRYPOINT /usr/local/bin/brz -CMD rocks +ENTRYPOINT ["/usr/local/bin/brz"]