Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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": [
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Loading