
- 이미지 이름은 hello:0.1
- 베이스 이미지 : ubuntu:22.04
- 패키지 설치: python3(apt-get이용)
- 응용 스크립트 설치 : hello.py
docker run -p 8081:80 ubuntu:22.04

FROM ubuntu:22.04
RUN apt-get update && apt-get install -y python3
COPY hello.py .
ENTRYPOINT ["python3", "hello.py"]
docker build -t hello:0.1 .


docker run -p 8088:80 hello:0.1

docker tag hello:0.1 도커아이디/hello:0.1

