Skip to content

Commit c083ffc

Browse files
fix: dockerfile for dev cannot run binary (#134)
* fix: dockerfile for dev cannot run binary * fix: test push * fix: revert test config
1 parent 2c63565 commit c083ffc

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

Dockerfile.dev

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,12 @@ RUN ["make"]
66
FROM alpine:latest
77

88
COPY --from=base /build/compass /usr/bin/compass
9+
RUN ls /usr/bin
910
RUN apk update
1011
RUN apk add ca-certificates
1112

12-
CMD ["compass"]
13+
# glibc compatibility library, since go binaries
14+
# don't work well with musl libc that alpine uses
15+
RUN apk add libc6-compat
16+
17+
CMD ["compass", "serve"]

0 commit comments

Comments
 (0)