Skip to content

Commit 54b50f5

Browse files
committed
Change Dockerfile to Ubuntu with musl-tools, since we need glibc compatibility with host system
1 parent 6de827e commit 54b50f5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
FROM alpine:3.8
1+
FROM ubuntu:16.04
22

3-
RUN apk update && \
4-
apk add \
3+
RUN apt-get update && apt-get install -y \
4+
musl-tools \
55
curl \
66
ca-certificates \
77
perl \
88
make \
99
gcc
1010

11-
ENV CC_x86_64_unknown_linux_musl=gcc
11+
ENV CC_x86_64_unknown_linux_musl=musl-gcc

0 commit comments

Comments
 (0)