Skip to content

Commit ccec6ca

Browse files
committed
multi: fix docker build
1 parent a165489 commit ccec6ca

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/docker.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,9 @@ jobs:
4646
push: true
4747
platforms: linux/amd64,linux/arm64
4848
tags: "${{ env.DOCKER_REPO }}/${{ env.DOCKER_IMAGE }}:${{ env.RELEASE_VERSION }}"
49-
build-args: checkout=${{ env.RELEASE_VERSION }} BASE_IMAGE_VERSION=${{ env.LND_VERSION }}
49+
build-args: |
50+
checkout=${{ env.RELEASE_VERSION }}
51+
BASE_IMAGE_VERSION=${{ env.LND_VERSION }}
5052
5153
- name: Image digest
5254
run: echo ${{ steps.docker_build.outputs.digest }}

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
ARG GO_VERSION=1.17.6
22
ARG BASE_IMAGE=lightninglabs/lnd
3-
ARG BASE_IMAGE_VERSION=0.14.2-beta
3+
ARG BASE_IMAGE_VERSION=v0.14.2-beta
44

55
FROM golang:${GO_VERSION}-alpine as builder
66

version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ const (
3232
AppMinor uint = 1
3333

3434
// AppPatch defines the application patch for this binary.
35-
AppPatch uint = 0
35+
AppPatch uint = 1
3636

3737
// AppPreRelease MUST only contain characters from semanticAlphabet
3838
// per the semantic versioning spec.

0 commit comments

Comments
 (0)