aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorterminaldweller <devi@terminaldweller.com>2024-01-23 17:54:13 +0000
committerterminaldweller <devi@terminaldweller.com>2024-01-23 17:54:13 +0000
commit1f220bffe0b2f8818151b487a83e1a0b76a07fb5 (patch)
tree75c533fb380b23c64e00b520d64925b48ea5fd15 /Dockerfile
parentWIP (diff)
downloadsms-webhook-1f220bffe0b2f8818151b487a83e1a0b76a07fb5.tar.gz
sms-webhook-1f220bffe0b2f8818151b487a83e1a0b76a07fb5.zip
first working version
Diffstat (limited to '')
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 86c18bb..a652540 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -4,8 +4,8 @@ RUN apk update && apk upgrade && \
RUN git clone https://github.com/terminaldweller/sms-webhook
WORKDIR /sms-webhook
COPY go.sum go.mod /sms-webhook/
-COPY *.go /sms-webhook/
RUN go mod download
+COPY *.go /sms-webhook/
ENV CGO_ENABLED=0
RUN go build