Skip to content

Commit

Permalink
Update Dockerfile with correct repo and license (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
texuf authored May 20, 2024
1 parent f48f45a commit 629cbcc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ RUN cd xchain && go build -trimpath -o /bin/xchain_node ./node
FROM alpine:latest
LABEL org.opencontainers.image.title="River Node" \
org.opencontainers.image.description="River Node reference implementation, written in Go" \
org.opencontainers.image.source="https://github.com/river-build/river-stage" \
org.opencontainers.image.licenses="Apache-2.0"
org.opencontainers.image.source="https://github.com/river-build/river" \
org.opencontainers.image.licenses="MIT"

# Install dependencies
RUN apk add --no-cache libcap supervisor && \
Expand Down Expand Up @@ -62,7 +62,7 @@ USER riveruser

# Environment variables setup
ARG GIT_SHA
ARG DD_GIT_REPOSITORY_URL="https://github.com/river-build/river-stage"
ARG DD_GIT_REPOSITORY_URL="https://github.com/river-build/river"

ENV DD_GIT_REPOSITORY_URL=${DD_GIT_REPOSITORY_URL} \
DD_GIT_COMMIT_SHA=${GIT_SHA}
Expand Down

0 comments on commit 629cbcc

Please sign in to comment.