Skip to content

Commit

Permalink
add tools docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
asottile committed Jan 21, 2024
1 parent 41c7d9d commit 20dd403
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions dockerfiles/Dockerfile.tools
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
FROM ubuntu:focal
RUN : \
&& apt-get update -qq \
&& DEBIAN_FRONTEND=noninteractive apt-get install \
-qq -y --no-install-recommends \
devscripts \
git-buildpackage \
gnupg \
pristine-tar \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
ENV HOME=/homedir LANG=C.UTF-8
RUN git config --system --add safe.directory /tmp/src
WORKDIR /tmp/src

0 comments on commit 20dd403

Please sign in to comment.