docker: add support for multiarch builds

pull/480/head
Andras Banki-Horvath 2 years ago
parent b5e7e3ded8
commit e2ff490fe5
No known key found for this signature in database
GPG Key ID: 80E5375C094198D8

@ -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…
Cancel
Save