mirror of
https://github.com/lightninglabs/loop.git
synced 2026-08-13 12:33:03 +02:00
docker: add support for multiarch builds
This commit is contained in:
parent
b5e7e3ded8
commit
e2ff490fe5
1 changed files with 2 additions and 2 deletions
|
|
@ -1,4 +1,4 @@
|
|||
FROM golang:1.17-alpine as builder
|
||||
FROM --platform=${BUILDPLATFORM} golang:1.17-alpine as builder
|
||||
|
||||
# Copy in the local repository to build from.
|
||||
COPY . /go/src/github.com/lightningnetwork/loop
|
||||
|
|
@ -18,7 +18,7 @@ RUN apk add --no-cache --update alpine-sdk \
|
|||
&& make install
|
||||
|
||||
# Start a new, final image to reduce size.
|
||||
FROM alpine as final
|
||||
FROM --platform=${BUILDPLATFORM} alpine as final
|
||||
|
||||
# Expose lnd ports (server, rpc).
|
||||
EXPOSE 8081 11010
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue