Skip to content
This repository has been archived by the owner on Oct 17, 2024. It is now read-only.

Commit

Permalink
unbork alpine containers (#64)
Browse files Browse the repository at this point in the history
unbork alpine containers. Since we started building with github actions, the /produce and /consume binaries couldn't be ran because we build against glibc and we run in alpine which uses musl. The easiest fix is to add the glibc compatibility layer in our base golang container.
  • Loading branch information
northdpole authored Oct 21, 2020
1 parent ac7bd41 commit e1acad0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/docker/Dockerfile-base-go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM alpine:3.10 as alpine

RUN apk add -U --no-cache ca-certificates
RUN apk add -U --no-cache ca-certificates libc6-compat

ENTRYPOINT []

Expand Down

0 comments on commit e1acad0

Please sign in to comment.