diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 2a4fff078d..05662ece11 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -224,7 +224,7 @@ jobs: shell: bash working-directory: ${{runner.workspace}}/build run: | - cp ../tools/ci-scripts/linux-gha/hifi.conf . + cp $GITHUB_WORKSPACE/tools/ci-scripts/linux-gha/hifi.conf . docker build -t $DOCKER_IMAGE_NAME -f $GITHUB_WORKSPACE/tools/ci-scripts/linux-gha/Dockerfile ./ - name: Export Docker image shell: bash diff --git a/tools/ci-scripts/linux-gha/Dockerfile b/tools/ci-scripts/linux-gha/Dockerfile index 5ef736845f..027f088e54 100644 --- a/tools/ci-scripts/linux-gha/Dockerfile +++ b/tools/ci-scripts/linux-gha/Dockerfile @@ -16,7 +16,7 @@ COPY ./plugins/pcmCodec/libpcmCodec.so /etc/hifi/server/plugins/ RUN true COPY ./*.so /lib/ RUN ln -sf /lib/libquazip5.so /lib/libquazip5.so.1 -#COPY ./resources/ /etc/hifi/server/resources/ +COPY ./domain-server/resources/ /etc/hifi/server/resources/ COPY ./hifi.conf /etc/supervisor/conf.d/hifi.conf RUN for fn in /usr/local/Qt5.12.3/5.12.3/gcc_64/plugins/imageformats/*.so; do \ if [ ! -x $fn ]; then ln -s $fn /etc/hifi/server/imageformats; fi; done