Docker build specify dockerfile

Code examples

20
0

docker build

docker build -t [tag] .
1
0

dockerfile example

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

how to create docker image from custom filename

cat DockerFile.debian.foo | docker build -t debian.foo -
0
0

docker build from dockerfile

$ docker build - < Dockerfile
0
0

multiple run dockerfile

RUN cd /
    git clone https://github.com/
    cd /fileadmin/
    bundle install
    rake db:migrate
    bundle exec rails runner "eval(File.read 'createTestUser.rb')"
    mkdir /pending
    mkdir /live
    chmod 777 /pending
    chmod 777 /live
-1
0

docker build specify dockerfile

docker build -t [name] -f [Dockerfile] 

In other languages

This page is in other languages

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