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 \
3
3
alpine-sdk \
4
4
ca-certificates \
5
5
go
6
+ WORKDIR /relay
6
7
ADD ./catcher ./catcher
7
8
ADD ./relay ./relay
8
9
ADD ./go.mod .
@@ -14,7 +15,7 @@ RUN set -ex && \
14
15
FROM alpine:3.19
15
16
RUN apk add --no-cache --update \
16
17
ca-certificates
17
- COPY --from=builder /dist /dist
18
+ COPY --from=builder /relay/ dist /dist
18
19
COPY relay.yaml /etc/relay/relay.yaml
19
20
ENTRYPOINT [ "/dist/relay" ]
20
21
CMD [ "--config" , "/etc/relay/relay.yaml" ]
Original file line number Diff line number Diff line change 1
1
package version
2
2
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