aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorGravatar Abhinav Gupta <mail@abhinavg.net> 2022-12-18 23:01:01 -0800
committerGravatar GitHub <noreply@github.com> 2022-12-18 23:01:01 -0800
commit47a726398b055cf77df38addf90a1a388a53b2c7 (patch)
treec717b45136cdf3f70218f578333398713aa5faa5 /Dockerfile
parent442df014f2dd5ca897b80fcad889726a230ccaf2 (diff)
downloadsally-47a726398b055cf77df38addf90a1a388a53b2c7.tar.gz
sally-47a726398b055cf77df38addf90a1a388a53b2c7.tar.zst
sally-47a726398b055cf77df38addf90a1a388a53b2c7.zip
Delete unused Docker infrastructure (#60)
This was all added back when these tests were running on Travis CI and attempted to create an isolated build of sally. This is all no longer necessary because GitHub Actions and Go modules provide enough isolation.
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile12
1 files changed, 0 insertions, 12 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"]