From 8c8b49093a0775b937cde3155934a94e037a4c57 Mon Sep 17 00:00:00 2001 From: Stewart Jingga Date: Tue, 3 Aug 2021 15:45:20 +0700 Subject: [PATCH] fix: change final Docker image to debian to remove dependency issues --- Dockerfile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8f951bf10..5f88f668d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,12 +3,8 @@ WORKDIR /build/ COPY . . RUN ["make"] -FROM alpine:latest -RUN apk --no-cache add ca-certificates bash +FROM debian:stretch WORKDIR /opt/meteor COPY --from=builder /build/meteor /opt/meteor/meteor -# glibc compatibility library, since go binaries -# don't work well with musl libc that alpine uses -RUN ["apk", "add", "libc6-compat"] CMD ["./meteor"]