Skip to content

Commit

Permalink
fix release dockfile (#119)
Browse files Browse the repository at this point in the history
  • Loading branch information
yuval-k authored Oct 23, 2021
1 parent 85b6001 commit ab6a8a5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ checksum:

release:
# If you want to manually examine the release before its live, uncomment this line:
draft: true
# draft: true
# As part of the release doc files are included as a separate deliverable for consumption by Packer.io.
# To include a separate docs.zip uncomment the extra_files config and the docs.zip command hook above.
extra_files:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker.io/library/golang:buster AS builder
FROM docker.io/library/golang:1.17.2-buster AS builder
RUN apt-get update -qq \
&& apt-get install -qqy git && \
mkdir /build
Expand Down
4 changes: 2 additions & 2 deletions samples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ docker run \
-v ${HOME}/.ssh/id_rsa.pub:/config/id_rsa.pub:ro \
-e PACKER_CACHE_DIR=/build/packer_cache \
-w /build/hostapd \
ghcr.io/solo-io/packer-plugin-arm-image:v0.2.2 build -var wifi_ssid=wifi_extender -var wifi_psk=$PASSWORD -var local_ssh_public_key=/config/id_rsa.pub .
ghcr.io/solo-io/packer-plugin-arm-image:v0.2.3 build -var wifi_ssid=wifi_extender -var wifi_psk=$PASSWORD -var local_ssh_public_key=/config/id_rsa.pub .
```

The pi will now create a new wifi access point, bridging it to the ethernet network.
Expand Down Expand Up @@ -51,7 +51,7 @@ docker run \
-v ${HOME}/.ssh/id_rsa.pub:/config/id_rsa.pub:ro \
-e PACKER_CACHE_DIR=/build/packer_cache \
-w /build/k8s \
ghcr.io/solo-io/packer-plugin-arm-image:v0.2.2 build -var local_ssh_public_key=/config/id_rsa.pub .
ghcr.io/solo-io/packer-plugin-arm-image:v0.2.3 build -var local_ssh_public_key=/config/id_rsa.pub .
```

or, run as root:
Expand Down

0 comments on commit ab6a8a5

Please sign in to comment.