Merge lp:~jelmer/brz/container into lp:brz

Proposed by Jelmer Vernooij
Status: Merged
Approved by: Jelmer Vernooij
Approved revision: 7636
Merge reported by: The Breezy Bot
Merged at revision: not available
Proposed branch: lp:~jelmer/brz/container
Merge into: lp:brz
Diff against target: 19 lines (+10/-0)
2 files modified
.dockerignore (+2/-0)
Dockerfile (+8/-0)
To merge this branch: bzr merge lp:~jelmer/brz/container
Reviewer Review Type Date Requested Status
Jelmer Vernooij Approve
Review via email: mp+429830@code.launchpad.net

Commit message

Add a docker file.

Description of the change

Add a docker file.

To post a comment you must log in.
Revision history for this message
Jelmer Vernooij (jelmer) :
review: Approve
Revision history for this message
The Breezy Bot (the-breezy-bot) wrote :
Revision history for this message
The Breezy Bot (the-breezy-bot) wrote :
Revision history for this message
The Breezy Bot (the-breezy-bot) wrote :

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== added file '.dockerignore'
--- .dockerignore 1970-01-01 00:00:00 +0000
+++ .dockerignore 2022-09-13 14:27:06 +0000
@@ -0,0 +1,2 @@
1Dockerfile
2*~
03
=== added file 'Dockerfile'
--- Dockerfile 1970-01-01 00:00:00 +0000
+++ Dockerfile 2022-09-13 14:27:06 +0000
@@ -0,0 +1,8 @@
1FROM debian:sid-slim AS build
2RUN 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
3COPY . .
4RUN python3 setup.py install
5FROM debian:sid
6RUN apt -y update && apt -y install python3 python3-configobj python3-dulwich python3-urllib3 python3-merge3 python3-patiencediff python3-fastbencode python3-yaml
7COPY --from=build /usr/local /usr/local
8ENTRYPOINT ["/usr/local/bin/brz"]

Subscribers

People subscribed via source and target branches