From 71c50405cd90c206a4e550290294e506a3ec770e Mon Sep 17 00:00:00 2001 From: GHOST Date: Mon, 22 Jan 2024 01:42:06 +0000 Subject: [PATCH] fix maybe --- .goreleaser.yml | 10 +++++----- Dockerfile | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.goreleaser.yml b/.goreleaser.yml index 872ada80..7aa3a965 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -9,7 +9,7 @@ before: - make build-frontend builds: - - binary: listmonk + - binary: listmonk-tweaked main: ./cmd goos: - linux @@ -43,7 +43,7 @@ dockers: goos: linux goarch: amd64 ids: - - listmonk + - listmonk-tweaked image_templates: # - "{{ .Env.DOCKER_ORG }}/{{ .ProjectName }}:latest-amd64" # - "{{ .Env.DOCKER_ORG }}/{{ .ProjectName }}:{{ .Tag }}-amd64" @@ -67,7 +67,7 @@ dockers: goos: linux goarch: arm64 ids: - - listmonk + - listmonk-tweaked image_templates: # - "{{ .Env.DOCKER_ORG }}/{{ .ProjectName }}:latest-arm64v8" # - "{{ .Env.DOCKER_ORG }}/{{ .ProjectName }}:{{ .Tag }}-arm64v8" @@ -92,7 +92,7 @@ dockers: goarch: arm goarm: 6 ids: - - listmonk + - listmonk-tweaked image_templates: # - "{{ .Env.DOCKER_ORG }}/{{ .ProjectName }}:latest-armv6" # - "{{ .Env.DOCKER_ORG }}/{{ .ProjectName }}:{{ .Tag }}-armv6" @@ -117,7 +117,7 @@ dockers: goarch: arm goarm: 7 ids: - - listmonk + - listmonk-tweaked image_templates: # - "{{ .Env.DOCKER_ORG }}/{{ .ProjectName }}:latest-armv7" # - "{{ .Env.DOCKER_ORG }}/{{ .ProjectName }}:{{ .Tag }}-armv7" diff --git a/Dockerfile b/Dockerfile index fe95f307..da38a90d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM alpine:latest RUN apk --no-cache add ca-certificates tzdata WORKDIR /listmonk -COPY listmonk . +COPY listmonk-tweaked listmonk COPY config.toml.sample config.toml COPY config-demo.toml . CMD ["./listmonk"]