Added Makefile mods, Dockerfile for demo

This commit is contained in:
Stephan van Ellewee 2020-02-28 14:43:17 +02:00
parent ded7f094e6
commit 1680db0961
2 changed files with 17 additions and 0 deletions

15
Dockerfile Normal file
View File

@ -0,0 +1,15 @@
FROM golang:1.13.1
WORKDIR /gotty
COPY . /gotty
RUN CGO_ENABLED=0 make
FROM alpine:latest
RUN apk update && \
apk upgrade && \
apk --no-cache add ca-certificates && \
apk add bash
WORKDIR /root
COPY --from=0 /gotty/gotty /usr/bin/
CMD ["gotty", "-w", "bash"]

View File

@ -78,3 +78,5 @@ shasums:
release:
ghr -c ${GIT_COMMIT} --delete --prerelease -u yudai -r gotty pre-release ${OUTPUT_DIR}/dist
clean:
rm -fr gotty