0
0
Fork 0
mirror of https://github.com/renovatebot/renovate.git synced 2025-01-03 18:51:48 +00:00
renovatebot_renovate/lib/modules/manager/dockerfile/__fixtures__/2.Dockerfile
Rhys Arkins dca3418bbd refactor: lib/modules (#14488)
Moves datasource, manager, platform and versioning code from lib/ into new lib/modules/

BREAKING CHANGE: External tools must update paths to datasource, manager, platform and versioning
2022-03-04 09:04:02 +01:00

39 lines
508 B
Docker

# different FROM syntaxes
FROM image1 as name1
FROM image2:1.0.0@sha256:abcdef \
as name2
# FROM image3
FROM\
--platform=$arg \
# comment1
image4
FROM \
\
image5 \
#comment5
as name3
# different COPY --from syntaxes
COPY --from=image6 /path/1 /path/2
COPY \
# comment1
--from=image7:1.0.0@sha256:abcdef \
/path/1 \
/path/2
# COPY --from=image8
COPY --chown=root --from=image11 / ./
COPY \
\
--from=image12 a \
#comment5
b
COPY --from=image13 --chown=root: a b