Skip to content

Commit

Permalink
#42 - fix working directory for docker
Browse files Browse the repository at this point in the history
  • Loading branch information
jurassix committed May 31, 2024
1 parent c25d9b6 commit d103ef3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ RUN apk add --no-cache --update \
alpine-sdk \
ca-certificates \
go
WORKDIR /relay
ADD ./catcher ./catcher
ADD ./relay ./relay
ADD ./go.mod .
Expand All @@ -14,7 +15,7 @@ RUN set -ex && \
FROM alpine:3.19
RUN apk add --no-cache --update \
ca-certificates
COPY --from=builder /dist /dist
COPY --from=builder /relay/dist /dist
COPY relay.yaml /etc/relay/relay.yaml
ENTRYPOINT [ "/dist/relay" ]
CMD [ "--config", "/etc/relay/relay.yaml" ]
2 changes: 1 addition & 1 deletion relay/version/version.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package version

const RelayRelease = "v0.4.0" // TODO set this from tags automatically during git commit
const RelayRelease = "v0.4.1" // TODO set this from tags automatically during git commit

0 comments on commit d103ef3

Please sign in to comment.