diff --git a/.github/workflows/registry_upload.yml b/.github/workflows/registry_upload.yml index 78bd5bae..d1176e8f 100644 --- a/.github/workflows/registry_upload.yml +++ b/.github/workflows/registry_upload.yml @@ -70,7 +70,7 @@ jobs: type=ref,event=tag,enable={{is_default_branch}} - name: Copy Protobuf files to Dockerfile directories - run: ./ci/docker/copy-protobuf.sh + run: just copy-proto # This step uses the `docker/build-push-action` action to build the image, based on your repository's `Dockerfile`. If the build succeeds, it pushes the image to GitHub Packages. # It uses the `context` parameter to define the build's context as the set of files located in the specified path. For more information, see "[Usage](https://github.com/docker/build-push-action#usage)" in the README of the `docker/build-push-action` repository. diff --git a/README.md b/README.md index a2317f05..ed65414a 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ The E-SOH service consist of three parts. ## Usage All three parts of the service is kept in this repository and can be built and setup using docker-compose. For more documentation on each part of the service see README.md in each relevant folder in this repository. -To keep a small docker context and not have the extra maintenance of a .dockerignore, it is necessary when running locally to copy the protobuf file to the Dockerfile directories. You can do this by running: `./ci/docker/copy-protobuf.sh`. Which copies the protobuf files to all specified Dockerfile directories. At the moment the ingestor is not included. +To keep a small docker context and not have the extra maintenance of a .dockerignore, it is necessary when running locally to copy the protobuf file to the Dockerfile directories. You can do this by running: `just copy-proto`. Which copies the protobuf files to all specified Dockerfile directories. At the moment the ingestor is not included. ## Just run command The Justfile is a simple way to define and run common tasks for a project. It’s similar to Makefiles, but simpler and more cross-platform.