From 36aee2f74d0bbb139efcc0303fa04bf308efd5b3 Mon Sep 17 00:00:00 2001 From: Grayson Koonce Date: Thu, 26 Jan 2017 13:42:56 -0800 Subject: Rename Dockerfile.sally to Dockerfile.scratch (#27) --- Dockerfile.sally | 6 ------ Dockerfile.scratch | 6 ++++++ Makefile | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) delete mode 100644 Dockerfile.sally create mode 100644 Dockerfile.scratch diff --git a/Dockerfile.sally b/Dockerfile.sally deleted file mode 100644 index f78f304..0000000 --- a/Dockerfile.sally +++ /dev/null @@ -1,6 +0,0 @@ -FROM scratch - -EXPOSE 8080 -ADD sally.yaml / -ADD _tmp/sally / -ENTRYPOINT ["/sally"] diff --git a/Dockerfile.scratch b/Dockerfile.scratch new file mode 100644 index 0000000..f78f304 --- /dev/null +++ b/Dockerfile.scratch @@ -0,0 +1,6 @@ +FROM scratch + +EXPOSE 8080 +ADD sally.yaml / +ADD _tmp/sally / +ENTRYPOINT ["/sally"] diff --git a/Makefile b/Makefile index a6e06a0..7f563c5 100644 --- a/Makefile +++ b/Makefile @@ -71,7 +71,7 @@ docker-build-internal: rm -rf _tmp mkdir -p _tmp CGO_ENABLED=0 go build -a -installsuffix cgo -o _tmp/sally $(SRCS) - docker build -t uber/sally -f Dockerfile.sally . + docker build -t uber/sally -f Dockerfile.scratch . .PHONY: docker-build docker-build: docker-build-dev -- cgit v1.2.3