Skip to content

Commit

Permalink
Adjust dockerfile
Browse files Browse the repository at this point in the history
Signed-off-by: Miroslav Kovar <miroslav.kovar@absa.africa>
  • Loading branch information
mirgee committed May 12, 2023
1 parent d1f24c2 commit 0a17360
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/actions/setup-testing-rust/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@ runs:
if: ${{ inputs.skip-vdrproxy-setup != 'true' }}
shell: bash
run: |
docker run --rm -d --name vdrproxy --network host -e GENESIS=${{ env.GENESIS_URL }} -e PORT=${{ env.VDR_PROXY_PORT }} ${{ env.DOCKER_IMAGE_VDRPROXY }}
docker run --rm -d --name vdrproxy --network host ${{ env.DOCKER_IMAGE_VDRPROXY }} -p ${{ env.VDR_PROXY_PORT }} -g ${{ env.GENESIS_URL }}
5 changes: 1 addition & 4 deletions ci/vdrproxy.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,5 @@ RUN apk update && apk upgrade && \
libstdc++ \
libgcc

ENV PORT 3030
ENV GENESIS genesis.txn

COPY --from=builder /home/indy/indy-vdr/target/release/indy-vdr-proxy indy-vdr-proxy
ENTRYPOINT ./indy-vdr-proxy -p ${PORT} -g ${GENESIS}
ENTRYPOINT ["./indy-vdr-proxy"]

0 comments on commit 0a17360

Please sign in to comment.