Skip to content

Commit

Permalink
Added ARMv7 Docker image support
Browse files Browse the repository at this point in the history
  • Loading branch information
virtualzone committed Jan 28, 2023
1 parent 8eae10f commit 447044a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
uses: docker/build-push-action@v2
with:
context: .
platforms: linux/amd64,linux/arm64
platforms: linux/amd64,linux/arm64,linux/arm/v7
push: true
tags: |
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ env.CI_VERSION }}
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ FROM gcr.io/distroless/base-debian11
COPY --from=builder /go/src/app/go-hole /app/
COPY --from=builder /sbin/getcap /sbin/
COPY --from=builder /sbin/setcap /sbin/
COPY --from=builder /lib/*-linux-gnu/libcap.so.2 /lib/
COPY --from=builder /lib/*-linux-*/libcap.so.2 /lib/
RUN ["/sbin/setcap", "cap_net_bind_service=+ep", "/app/go-hole"]
ADD config.yaml /app/
WORKDIR /app
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.3.0
v0.3.1
2 changes: 1 addition & 1 deletion src/version.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// File autogenerated from VERSION, do not change manually!
package main

const AppVersion = "v0.3.0"
const AppVersion = "v0.3.1"

0 comments on commit 447044a

Please sign in to comment.