mirror of
https://github.com/GoogleContainerTools/kaniko.git
synced 2026-05-16 13:20:33 +00:00
61af994a33
- Change integration tests to use docker hub instead of GCR due to bug in library that requires authentication with gcr.io even for public images. See #966 for bug tracking this. - Make uploading to GCS bucket configurable through a flag --uploadToGCS - Utilize a locally deployed docker registry in travis CI to remove dependency of needing to authenticate with GCP. This requires host networking such that we can access the registry on localhost:5000 - Use the commit that's being tested for `TestGitBuildcontext` - Remove duplicate GitBuildContext case that's now covered by default in travis CI.
5 lines
130 B
Plaintext
5 lines
130 B
Plaintext
FROM debian:10.2 AS first
|
|
CMD ["mycmd"]
|
|
FROM first
|
|
ENTRYPOINT ["myentrypoint"] # This should clear out CMD in the config metadata
|