We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e942481 commit 9a75916Copy full SHA for 9a75916
docker/heplify/Dockerfile
@@ -1,7 +1,9 @@
1
-# sudo docker build -t negbie/heplify:latest .
2
-
3
FROM golang:alpine as builder
4
RUN apk --update add linux-headers musl-dev gcc libpcap-dev ca-certificates git
+RUN apk --update add --no-cache git build-base
+RUN git clone https://luajit.org/git/luajit-2.0.git \
5
+ && cd luajit-2.0 \
6
+ && make CCOPT="-static -fPIC" BUILDMODE="static" && make install
7
COPY . /heplify
8
WORKDIR /heplify
9
RUN CGO_ENABLED=1 GOOS=linux go build -a --ldflags '-linkmode external -extldflags "-static -s -w"' -o heplify .
0 commit comments