Skip to content

Commit f62fa00

Browse files
committed
docker: adjust script path names in the Dockerfile
No additional options are required to build the docker image.
1 parent 7a5a52e commit f62fa00

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- uses: actions/checkout@v3
2424

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

2828
- name: Log into registry
2929
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $ --password-stdin

docker/Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ RUN apt-get update && apt-get -y full-upgrade && \
2525
libzmq3-dev
2626

2727
WORKDIR /tmp/mdt-dialout-collector
28-
COPY docker/scripts/grpc.sh scripts/
29-
COPY docker/scripts/mdt_dialout_collector.sh scripts/
30-
COPY docker/scripts/mdt_dialout_collector.conf /etc/opt/mdt-dialout-collector/
28+
COPY scripts/grpc.sh scripts/
29+
COPY scripts/mdt_dialout_collector.sh scripts/
30+
COPY scripts/mdt_dialout_collector.conf /etc/opt/mdt-dialout-collector/
3131

3232
RUN ./scripts/grpc.sh
3333
RUN rm -rf grpc

0 commit comments

Comments
 (0)