summaryrefslogtreecommitdiff
path: root/deployments/docker/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'deployments/docker/Dockerfile')
-rw-r--r--deployments/docker/Dockerfile13
1 files changed, 0 insertions, 13 deletions
diff --git a/deployments/docker/Dockerfile b/deployments/docker/Dockerfile
deleted file mode 100644
index 6a04a6c..0000000
--- a/deployments/docker/Dockerfile
+++ /dev/null
@@ -1,13 +0,0 @@
-# SPDX-FileCopyrightText: © 2020 Grégoire Duchêne <gduchene@awhk.org>
-# SPDX-License-Identifier: ISC
-
-FROM golang:1.16
-WORKDIR /root
-COPY . ./
-RUN CGO_ENABLED=0 go build ./cmd/fwdsms
-
-FROM scratch
-COPY --from=0 /root/fwdsms /usr/bin/fwdsms
-
-EXPOSE 8080
-ENTRYPOINT ["/usr/bin/fwdsms"]