Skip to content
Snippets Groups Projects
Commit e779fe60 authored by Chris Lamb's avatar Chris Lamb :eyes:
Browse files

Install/remove build-essential during build so we can install the recommended packages from Git.

parent ee50b586
No related branches found
No related tags found
No related merge requests found
Pipeline #135663 passed
......@@ -3,13 +3,13 @@ FROM debian:sid
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get dist-upgrade --yes
RUN apt-get install --yes --no-install-recommends devscripts equivs
RUN apt-get install --yes --no-install-recommends build-essential devscripts equivs
ADD [".", "/srv/diffoscope"]
RUN mk-build-deps --install --tool 'apt-get -o Debug::pkgProblemResolver=yes --no-install-recommends --yes' /srv/diffoscope/debian/control
RUN apt-get remove --purge --yes devscripts equivs
RUN apt-get autoremove --purge --yes
RUN apt-get remove --purge --yes build-essential devscripts equivs
RUN rm -rf /srv/diffoscope/debian
RUN useradd -ms /bin/bash user
USER user
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment