aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--Dockerfile12
-rw-r--r--Dockerfile.scratch6
2 files changed, 0 insertions, 18 deletions
diff --git a/Dockerfile b/Dockerfile
deleted file mode 100644
index 1198370..0000000
--- a/Dockerfile
+++ /dev/null
@@ -1,12 +0,0 @@
-FROM golang:1.18
-
-EXPOSE 8080
-RUN \
- curl -fsSLO https://get.docker.com/builds/Linux/x86_64/docker-latest.tgz && \
- tar --strip-components=1 -xvzf docker-latest.tgz -C /usr/local/bin
-ENV GO111MODULE=on
-RUN mkdir -p /go/src/go.uber.org/sally
-WORKDIR /go/src/go.uber.org/sally
-ADD . /go/src/go.uber.org/sally/
-RUN go mod vendor
-CMD ["make", "run"]
diff --git a/Dockerfile.scratch b/Dockerfile.scratch
deleted file mode 100644
index f78f304..0000000
--- a/Dockerfile.scratch
+++ /dev/null
@@ -1,6 +0,0 @@
-FROM scratch
-
-EXPOSE 8080
-ADD sally.yaml /
-ADD _tmp/sally /
-ENTRYPOINT ["/sally"]