1
0
mirror of https://github.com/beego/bee.git synced 2024-06-02 00:43:27 +00:00

fix docker build error by dockerBuildTemplate

This commit is contained in:
scrpgil 2017-03-19 21:45:59 +09:00
parent aa19ecedb0
commit 8d646b4be1

View File

@ -44,8 +44,7 @@ ENTRYPOINT $APP_DIR/{{.Entrypoint}}
ADD . $APP_DIR ADD . $APP_DIR
# Compile the binary and statically link # Compile the binary and statically link
RUN cd $APP_DIR RUN cd $APP_DIR && CGO_ENABLED=0 godep go build -ldflags '-d -w -s'
RUN CGO_ENABLED=0 godep go build -ldflags '-d -w -s'
EXPOSE {{.Expose}} EXPOSE {{.Expose}}
` `