-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
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
Dockerfile commands to implement #1
Comments
This was referenced Feb 15, 2018
Closed
Closed
Closed
Closed
Closed
Closed
Closed
Closed
Closed
Closed
tejal29
pushed a commit
that referenced
this issue
Mar 30, 2020
This was referenced Feb 22, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
FROM
RUN
CMD
LABEL
EXPOSE
ENV
<key>:<value>
pairs in imageADD
Add has two forms:
ADD [--chown=<user>:<group>] <src>... <dest>
ADD [--chown=<user>:<group>] ["<src>",... "<dest>"]
Copy new files, directories, or remote URLs from
<src>
to the<dest>
Multiple sources may be specified, their paths are interpreted as relative to the context of the build
Support for any
<src>
to contain wildcards<dest>
is absolute path, or relative to WORKDIR commandSpecify UID/GID with --chown flag
If
<src>
is local tar archive, it is unpacked to destination directoryCOPY
COPY has two forms:
-
COPY [--chown=<user>:<group>] <src>... <dest>
-
COPY [--chown=<user>:<group>] ["<src>",... "<dest>"]
<src>
ENTRYPOINT
VOLUME
USER
WORKDIR
ARG
ONBUILD
STOPSIGNAL
HEALTHCHECK
SHELL
The text was updated successfully, but these errors were encountered: