1
0

Dockerfile-dhvirtualenv 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. # A dockerfile which builds a docker image for building a debian package for
  2. # synapse. The distro to build for is passed as a docker build var.
  3. #
  4. # The default entrypoint expects the synapse source to be mounted as a
  5. # (read-only) volume at /synapse/source, and an output directory at /debs.
  6. #
  7. # A pair of environment variables (TARGET_USERID and TARGET_GROUPID) can be
  8. # passed to the docker container; if these are set, the build script will chown
  9. # the build products accordingly, to avoid ending up with things owned by root
  10. # in the host filesystem.
  11. # Get the distro we want to pull from as a dynamic build variable
  12. ARG distro=""
  13. ###
  14. ### Stage 0: build a dh-virtualenv
  15. ###
  16. FROM ${distro} as builder
  17. RUN apt-get update -qq -o Acquire::Languages=none
  18. RUN env DEBIAN_FRONTEND=noninteractive apt-get install \
  19. -yqq --no-install-recommends \
  20. build-essential \
  21. ca-certificates \
  22. devscripts \
  23. equivs \
  24. wget
  25. # fetch and unpack the package
  26. RUN wget -q -O /dh-virtuenv-1.1.tar.gz https://github.com/spotify/dh-virtualenv/archive/1.1.tar.gz
  27. RUN tar xvf /dh-virtuenv-1.1.tar.gz
  28. # install its build deps
  29. RUN cd dh-virtualenv-1.1/ \
  30. && env DEBIAN_FRONTEND=noninteractive mk-build-deps -ri -t "apt-get -yqq --no-install-recommends"
  31. # build it
  32. RUN cd dh-virtualenv-1.1 && dpkg-buildpackage -us -uc -b
  33. ###
  34. ### Stage 1
  35. ###
  36. FROM ${distro}
  37. # Install the build dependencies
  38. RUN apt-get update -qq -o Acquire::Languages=none \
  39. && env DEBIAN_FRONTEND=noninteractive apt-get install \
  40. -yqq --no-install-recommends -o Dpkg::Options::=--force-unsafe-io \
  41. build-essential \
  42. debhelper \
  43. devscripts \
  44. dh-systemd \
  45. lsb-release \
  46. python3-dev \
  47. python3-pip \
  48. python3-setuptools \
  49. python3-venv \
  50. sqlite3
  51. COPY --from=builder /dh-virtualenv_1.1-1_all.deb /
  52. # install dhvirtualenv. Update the apt cache again first, in case we got a
  53. # cached cache from docker the first time.
  54. RUN apt-get update -qq -o Acquire::Languages=none \
  55. && apt-get install -yq /dh-virtualenv_1.1-1_all.deb
  56. WORKDIR /synapse/source
  57. ENTRYPOINT ["bash","/synapse/source/docker/build_debian.sh"]