Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Docker COPY welcome file

  • COPY
FROM ubuntu:23.04

RUN apt-get update
RUN apt-get install -y htop
COPY welcome.txt .
docker build -t mydocker .
docker run --rm -it mydocker