'cache' do 'docker'

Exemplos de código

1
0

exemplo do ficheiro do dockerfile

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

acoplador limpar a 'cache'

# Rebuild the image
docker build --no-cache

# Pull the base images again and rebuild
docker build --no-cache --pull

# Also works with docker-compose
docker-compose build --no-cache

# If nothing from the above works for you, you could also prune everything
docker system to prune
-2
0

ficheiro de acoplagem executar o cmd da aplicação

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

Em outros idiomas

Esta página está em outros idiomas

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