diff --git a/.changeset/early-pans-provide.md b/.changeset/early-pans-provide.md new file mode 100644 index 0000000000000..6736c4f82f4e0 --- /dev/null +++ b/.changeset/early-pans-provide.md @@ -0,0 +1,5 @@ +--- +'@eth-optimism/replica-healthcheck': patch +--- + +Fix bug in replica healthcheck dockerfile diff --git a/.github/workflows/publish-canary.yml b/.github/workflows/publish-canary.yml index e914c43931fa7..3ddd000643faa 100644 --- a/.github/workflows/publish-canary.yml +++ b/.github/workflows/publish-canary.yml @@ -345,7 +345,7 @@ jobs: build-args: BUILDER_TAG=${{ needs.builder.outputs.canary-docker-tag }} replica-healthcheck: - name: Publish Data Transport Layer Version ${{ needs.builder.outputs.canary-docker-tag }} + name: Publish Replica Healthcheck Version ${{ needs.builder.outputs.canary-docker-tag }} needs: builder if: needs.builder.outputs.replica-healthcheck != '' runs-on: ubuntu-latest diff --git a/ops/docker/Dockerfile.replica-healthcheck b/ops/docker/Dockerfile.replica-healthcheck index a31ec9e39fd6e..c60ea84463da6 100644 --- a/ops/docker/Dockerfile.replica-healthcheck +++ b/ops/docker/Dockerfile.replica-healthcheck @@ -19,6 +19,11 @@ COPY --from=builder /optimism/packages/core-utils/dist ./packages/core-utils/dis COPY --from=builder /optimism/packages/common-ts/package.json ./packages/common-ts/package.json COPY --from=builder /optimism/packages/common-ts/dist ./packages/common-ts/dist +COPY --from=builder /optimism/packages/contracts/package.json ./packages/contracts/package.json +COPY --from=builder /optimism/packages/contracts/deployments ./packages/contracts/deployments +COPY --from=builder /optimism/packages/contracts/dist ./packages/contracts/dist +COPY --from=builder /optimism/packages/contracts/artifacts ./packages/contracts/artifacts + # copy the service WORKDIR /opt/optimism/packages/replica-healthcheck COPY --from=builder /optimism/packages/replica-healthcheck/dist ./dist