Skip to content

Commit

Permalink
Take 3: fixing docker image issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Kardbord committed Apr 23, 2022
1 parent 6985d83 commit 391ffc9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ dockers:
- "ghcr.io/tannerkvarfordt/kard-bot:latest-arm64"
goos: linux
goarch: arm64
use: buildx
use: docker
dockerfile: Dockerfile
build_flag_templates:
- "--label=org.opencontainers.image.source=https://github.com/TannerKvarfordt/Kard-bot"
Expand All @@ -90,7 +90,7 @@ dockers:
- "ghcr.io/tannerkvarfordt/kard-bot:latest-amd64"
goos: linux
goarch: amd64
use: buildx
use: docker
dockerfile: Dockerfile
build_flag_templates:
- "--label=org.opencontainers.image.source=https://github.com/TannerKvarfordt/Kard-bot"
Expand All @@ -115,7 +115,7 @@ dockers:
goos: linux
goarch: arm
goarm: "7"
use: buildx
use: docker
dockerfile: Dockerfile
build_flag_templates:
- "--label=org.opencontainers.image.source=https://github.com/TannerKvarfordt/Kard-bot"
Expand All @@ -140,7 +140,7 @@ dockers:
goos: linux
goarch: arm
goarm: "6"
use: buildx
use: docker
dockerfile: Dockerfile
build_flag_templates:
- "--label=org.opencontainers.image.source=https://github.com/TannerKvarfordt/Kard-bot"
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1

FROM golang:1.18-alpine
FROM alpine:latest
RUN sh -c 'apk add --no-cache tzdata'

WORKDIR /
Expand Down

0 comments on commit 391ffc9

Please sign in to comment.