From 8a90ab3edc760fc105ea46677eb48e6a6b6b1726 Mon Sep 17 00:00:00 2001 From: Newton Pasqualini Filho Date: Thu, 17 Oct 2024 10:48:00 +0100 Subject: [PATCH] add missing Dockerfile to build --- Dockerfile | 3 +++ go.mod | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000..37c36525 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,3 @@ +FROM alpine +COPY chisel /app/ +ENTRYPOINT ["/app/chisel"] \ No newline at end of file diff --git a/go.mod b/go.mod index 2c46fa78..17311784 100644 --- a/go.mod +++ b/go.mod @@ -22,4 +22,4 @@ require ( golang.org/x/text v0.14.0 // indirect ) -replace github.com/jpillora/chisel => ../chisel \ No newline at end of file +replace github.com/jpillora/chisel => ../chisel