Skip to content

Commit 8c8b490

Browse files
committed
fix: change final Docker image to debian to remove dependency issues
1 parent 18c7f56 commit 8c8b490

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

Dockerfile

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,8 @@ WORKDIR /build/
33
COPY . .
44
RUN ["make"]
55

6-
FROM alpine:latest
7-
RUN apk --no-cache add ca-certificates bash
6+
FROM debian:stretch
87
WORKDIR /opt/meteor
98
COPY --from=builder /build/meteor /opt/meteor/meteor
109

11-
# glibc compatibility library, since go binaries
12-
# don't work well with musl libc that alpine uses
13-
RUN ["apk", "add", "libc6-compat"]
1410
CMD ["./meteor"]

0 commit comments

Comments
 (0)