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 c7fd5eb commit 48ce79eCopy full SHA for 48ce79e
Dockerfile.windows
@@ -18,7 +18,7 @@ RUN go mod download
18
19
# Build
20
COPY . .
21
-RUN go build -a -tags aemm-windows -o ./build/ ./cmd/...
+RUN go build -a -tags aemm-windows -o ./build/ec2-metadata-mock.exe ./cmd/...
22
# In case the target is build for testing:
23
# $ docker build --target=builder -t test .
24
ENTRYPOINT ["/amazon-ec2-metadata-mock/build/ec2-metadata-mock.exe"]
Makefile
@@ -57,7 +57,7 @@ clean:
57
58
compile:
59
@echo ${MAKEFILE_PATH}
60
- go build -a -tags aemm${GOOS} -o ${BUILD_DIR_PATH}/ ./cmd/...
+ go build -a -tags aemm${GOOS} -o ${BUILD_DIR_PATH}/${BINARY_NAME} ./cmd/...
61
62
validate-json:
63
${MAKEFILE_PATH}/scripts/validators/json-validator
0 commit comments