Skip to content

Commit

Permalink
Add docker image.
Browse files Browse the repository at this point in the history
  • Loading branch information
jelmer committed Sep 13, 2022
1 parent 14acc43 commit ec03a4f
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
FROM debian:sid-slim AS build
RUN apt -y update && apt -y install cython3 python3-setuptools python3-setuptools-rust python3-configobj python3-dulwich python3-urllib3 python3-merge3 python3-patiencediff python3-fastbencode python3-yaml
COPY . .
RUN python3 setup.py install
FROM debian:sid
COPY --from=build /usr/local /usr/local
ENTRYPOINT /usr/local/bin/brz
CMD rocks

0 comments on commit ec03a4f

Please sign in to comment.