File: Dockerfile

package info (click to toggle)
breezy 3.3.17-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 40,768 kB
  • sloc: python: 279,477; ansic: 1,093; makefile: 367; sh: 284; lisp: 107
file content (8 lines) | stat: -rw-r--r-- 527 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
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
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"]