Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
You'll frequently want curl to cat from, and you fequently want to ch…
…eck your process
  • Loading branch information
solsson committed Jul 7, 2017
commit 19953b58a318e6dd8596e1d6ff2fc40db1eda044
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
FROM debian:stable-20170620

RUN buildDeps='curl ca-certificates build-essential zlib1g-dev python cmake'; \
RUN runDeps='curl ca-certificates procps'; \
buildDeps='build-essential zlib1g-dev python cmake'; \
set -ex; \
apt-get update && apt-get install -y $buildDeps --no-install-recommends; \
apt-get update && apt-get install -y $runDeps $buildDeps --no-install-recommends; \
rm -rf /var/lib/apt/lists/*; \
\
mkdir /usr/src/kafkacat; \
Expand Down