Skip to content

Commit d103ef3

Browse files
committed
#42 - fix working directory for docker
1 parent c25d9b6 commit d103ef3

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ RUN apk add --no-cache --update \
33
alpine-sdk \
44
ca-certificates \
55
go
6+
WORKDIR /relay
67
ADD ./catcher ./catcher
78
ADD ./relay ./relay
89
ADD ./go.mod .
@@ -14,7 +15,7 @@ RUN set -ex && \
1415
FROM alpine:3.19
1516
RUN apk add --no-cache --update \
1617
ca-certificates
17-
COPY --from=builder /dist /dist
18+
COPY --from=builder /relay/dist /dist
1819
COPY relay.yaml /etc/relay/relay.yaml
1920
ENTRYPOINT [ "/dist/relay" ]
2021
CMD [ "--config", "/etc/relay/relay.yaml" ]

relay/version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
package 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

0 commit comments

Comments
 (0)