Skip to content

Commit

Permalink
Fix missing certificates in container
Browse files Browse the repository at this point in the history
Signed-off-by: Jan Schlicht <[email protected]>
  • Loading branch information
Jan Schlicht committed Jul 8, 2020
1 parent e67b280 commit 9391ef2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ FROM debian:buster-slim

RUN set -eux; \
apt-get update; \
apt-get install -y --no-install-recommends git; \
apt-get install -y --no-install-recommends ca-certificates git; \
rm -rf /var/lib/apt/lists/*;

COPY --from=builder /go/src/kitt/bin/kitt /usr/bin
Expand Down
2 changes: 1 addition & 1 deletion scripts/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ COMMAND=$1
if git describe --exact-match >/dev/null; then
VERSION=$(git describe --dirty)
else
VERSION=$(git describe --abbrev=0 --dirty)+dev.$(git rev-parse HEAD)
VERSION=$(git describe --tags --abbrev=0 --dirty)+dev.$(git rev-parse HEAD)
fi

echo "Building $GOBIN/$COMMAND"
Expand Down

0 comments on commit 9391ef2

Please sign in to comment.