Merge pull request #480 from bhandras/docker-fix

pull/482/head
András Bánki-Horváth 2 years ago committed by GitHub
commit fd811a8ded
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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