Skip to content

Commit

Permalink
docker: fix path names in Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
ustorbeck committed Jul 4, 2024
1 parent 7a5a52e commit ee927b7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- uses: actions/checkout@v3

- name: Build image
run: docker build . --file docker/Dockerfile --tag $IMAGE_NAME --label "runnumber=${GITHUB_RUN_ID}"
run: docker build docker --tag $IMAGE_NAME --label "runnumber=${GITHUB_RUN_ID}"

- name: Log into registry
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $ --password-stdin
Expand Down
6 changes: 3 additions & 3 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ RUN apt-get update && apt-get -y full-upgrade && \
libzmq3-dev

WORKDIR /tmp/mdt-dialout-collector
COPY docker/scripts/grpc.sh scripts/
COPY docker/scripts/mdt_dialout_collector.sh scripts/
COPY docker/scripts/mdt_dialout_collector.conf /etc/opt/mdt-dialout-collector/
COPY scripts/grpc.sh scripts/
COPY scripts/mdt_dialout_collector.sh scripts/
COPY scripts/mdt_dialout_collector.conf /etc/opt/mdt-dialout-collector/

RUN ./scripts/grpc.sh
RUN rm -rf grpc
Expand Down

0 comments on commit ee927b7

Please sign in to comment.