스크린샷 2024-02-19 오전 12.06.31.png

docker run -it --name git ubuntu:latest bash
apt-get update
apt-get install -y git

docker commit git ubuntu:git

docker run -it --name git2 ubuntu:git /bin/bash

스크린샷 2024-02-19 오전 12.20.53.png

Dockerfile


스크린샷 2024-02-19 오전 12.22.36.png

Dockerfile

FROM ubuntu:latest
RUN apt-get update
RUN apt-get install -y git

$ docker build -t ubuntu:git-dockerfile .
$ docker run -it --name git3 ubuntu:git-dockerfile /bin/bash