File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ RUN apk add --no-cache --update \
33 alpine-sdk \
44 ca-certificates \
55 go
6+ WORKDIR /relay
67ADD ./catcher ./catcher
78ADD ./relay ./relay
89ADD ./go.mod .
@@ -14,7 +15,7 @@ RUN set -ex && \
1415FROM alpine:3.19
1516RUN apk add --no-cache --update \
1617 ca-certificates
17- COPY --from=builder /dist /dist
18+ COPY --from=builder /relay/ dist /dist
1819COPY relay.yaml /etc/relay/relay.yaml
1920ENTRYPOINT [ "/dist/relay" ]
2021CMD [ "--config" , "/etc/relay/relay.yaml" ]
Original file line number Diff line number Diff line change 11package version
22
3- const RelayRelease = "v0.4.0 " // TODO set this from tags automatically during git commit
3+ const RelayRelease = "v0.4.1 " // TODO set this from tags automatically during git commit
You can’t perform that action at this time.
0 commit comments