We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We seem to have multiple docker images with very similaris dockerfiles as base with only difference in copying files from base images.
--- Dockerfile.eth-beacon COPY --from=source /beacon-chain /usr/bin --- Dockerfile.eth-prysmctl COPY --from=source /prysmctl /usr/bin --- Dockerfile.eth-validator COPY --from=source /validator /usr/bin ---
We can either define a copy in versions.yaml which is a list.
copy
versions.yaml
- name: prysm/cmd/prysmctl base: gcr.io/prysmaticlabs/prysm/cmd/prysmctl file: Dockerfile.eth-prysmctl copy: - "/beacon-chain:/usr/bin" tags: - stable - v5.2.0
- name: prysm/cmd/prysmctl base: gcr.io/prysmaticlabs/prysm/cmd/prysmctl file: Dockerfile.eth-prysmctl copy: - src: "/beacon-chain" dst: "/usr/bin" tags: - stable - v5.2.0
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Overview
We seem to have multiple docker images with very similaris dockerfiles as base with only difference in copying files from base images.
Options 1
We can either define a
copy
inversions.yaml
which is a list.Options 2
The text was updated successfully, but these errors were encountered: