diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 81b7867..d712658 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,6 +1,6 @@ { "name": "Corteca CLI", - "image": "mcr.microsoft.com/devcontainers/go:1.24", + "image": "mcr.microsoft.com/devcontainers/go:1.25", "features": { "ghcr.io/devcontainers/features/docker-in-docker:2": { "version": "latest", @@ -12,7 +12,7 @@ "golangciLintVersion": "latest" } }, - "postCreateCommand": "sudo apt-get update && sudo apt-get install -y msitools ", + "postCreateCommand": "sudo apt-get update && sudo apt-get install -y msitools", "customizations": { "vscode": { "extensions": [ diff --git a/Dockerfile b/Dockerfile index 3cb803c..825beea 100644 --- a/Dockerfile +++ b/Dockerfile @@ -41,7 +41,7 @@ ARG PACKAGE="msix deb rpm osx" RUN for arch in ${ARCH}; do \ for pkg in ${PACKAGE}; do \ [ $pkg != msix -o $arch == amd64 ] || continue; \ - make $pkg GOARCH=$arch || exit 1; \ + make $pkg DESTARCH=$arch || exit 1; \ done; \ done