We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18c7f56 commit 8c8b490Copy full SHA for 8c8b490
Dockerfile
@@ -3,12 +3,8 @@ WORKDIR /build/
3
COPY . .
4
RUN ["make"]
5
6
-FROM alpine:latest
7
-RUN apk --no-cache add ca-certificates bash
+FROM debian:stretch
8
WORKDIR /opt/meteor
9
COPY --from=builder /build/meteor /opt/meteor/meteor
10
11
-# glibc compatibility library, since go binaries
12
-# don't work well with musl libc that alpine uses
13
-RUN ["apk", "add", "libc6-compat"]
14
CMD ["./meteor"]
0 commit comments