Dockerfile copy

Code examples

6
0

copy file from docker container to host

docker cp <containerId>:/file/path/within/container /host/path/target
1
0

copy file from host to docker container

docker cp foo.txt mycontainer:/foo.txt
1
0

dockerfile example

FROM ubuntu:18.04
COPY . /app
RUN make /app
CMD python /app/app.py
1
0

docker ARG

$ docker build --build-arg some_variable_name=a_value
0
0

dockerfile copy specific files

COPY ["__BUILD_NUMBER", "README.md", "gulpfile", "another_file", "./"]
		All the files and folders, the last is destination
-2
0

dockerfile run app cmd

RUN apt-get install python3
CMD echo "Hello world"
ENTRYPOINT echo "Hello world"

In other languages

This page is in other languages

Русский
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................