We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 441dcd5 commit d6f7c6eCopy full SHA for d6f7c6e
Makefile
@@ -13,7 +13,7 @@ usage:
13
build: build-mpserver build-mpfrontend
14
15
build-mpserver:
16
- cd mpserver && GOOS=linux GOARCH=amd64 go build && cd ..
+ cd mpserver && GOOS=linux GOARCH=amd64 go build -o mpserver && cd ..
17
18
build-mpfrontend:
19
cd mpfrontend && npm run build-dev
docker-prod-mpfrontend.sh
@@ -4,4 +4,4 @@ TAG=latest
4
if [ "${TRAVIS_TAG}" != "" ]; then
5
TAG=${TRAVIS_TAG}
6
fi
7
-docker build --no-cache -t aouyang1/mpfrontend:${TAG} -f mpserver/Dockerfile_prod mpfrontend/
+docker build --no-cache -t aouyang1/mpfrontend:${TAG} -f mpfrontend/Dockerfile_prod mpfrontend/
0 commit comments