Skip to content

Commit 2f7d7b2

Browse files
authored
Merge pull request #145 from hackberrydev/static-linking
Use static linking
2 parents 8a853e5 + 20937e9 commit 2f7d7b2

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM debian:trixie-slim
33
ARG JANET_VERSION
44
ARG JPM_VERSION
55

6-
RUN apt update && apt install -y git make build-essential libssl-dev wget
6+
RUN apt update && apt install -y git make build-essential libssl-dev wget musl-dev musl-tools
77

88
RUN mkdir -p /home/janet
99

project.janet

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@
66

77
(declare-executable
88
:name "alas"
9-
:entry "src/alas.janet")
9+
:entry "src/alas.janet"
10+
:lflags ["-static"])

0 commit comments

Comments
 (0)