docker file

This commit is contained in:
crusader 2017-09-07 21:43:27 +09:00
parent 0cf3116314
commit 796a82d777
2 changed files with 19 additions and 0 deletions

17
Dockerfile Normal file
View File

@ -0,0 +1,17 @@
FROM alpine:latest
ENV APP_VERSION=1.0.0 \
APP_HOME=/service \
APP_NAME=overflow_gateway_web
WORKDIR ${APP_HOME}
ADD dist/${APP_NAME} ${APP_HOME}/
ADD config.json ${APP_HOME}/
EXPOSE 80 443
ENTRYPOINT ["./overflow_service_websocket"]
# docker build -f Dockerfile -t docker.loafle.net/overflow/overflow_service_websocket:1.0.0-alpine .
# docker run -d -p 18081:80 -t docker.loafle.net/overflow/overflow_service_websocket:1.0.0-alpine

2
build.sh Normal file
View File

@ -0,0 +1,2 @@
rm ./dist/*
CGO_ENABLED=0 go build -a --installsuffix cgo --ldflags="-s" -o ./dist/overflow_gateway_web