Infra/Open Source

[Docker] 도커 컨테이너 (python app) 구동하기

헹창 2024. 4. 14.
반응형

윈도우 환경에서 vim 에디터 사용하는 방법 참고하기 (에디터는 취향껏..)


파이썬 앱 도커라이징해보기 !

 

  • Dockerfile 을 만들고
  • Build 실행 Docker Image 를 만들고
  • Run 실행  Docker Container 구동해보기

도커파일 만들기

vim Dockerfile
FROM python:3.7-bullseye

COPY hello.py /src/

ENTRYPOINT python /src/hello.py

 

파이썬 파일 만들기

vim hello.py
print("hello world haenny container")

 

도커 파일 실행하기

도커 이미지 빌드

docker build -f Dockerfile -t haenny-python-3.7 .
  • 도커 파일 빌드
  • -f 파일 이름은 Dockerfile
  • -t 태깅은 haenny-python-3.7 이고
  • 도커파일은 현재 (.) 위치에 있음

 

도커 이미지 실행

docker run haenny-python-3.7
hello world haenny container

 

 

 

728x90
반응형

댓글

추천 글