Dockerfile for Python

|

Dockerfile for Python

Python 용 어플리케이션을 위한 Dockerfile 템플릿입니다.


Dockerfile

Python 3.x 버전의 경우는

FROM python:3

WORKDIR /usr/src/app

COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt

COPY . .

CMD [ "python", "./your-daemon-or-script.py" ]

와 같으며,


Python 2.x 버전에서는 다음과 같이 작성합니다.

FROM python:2

WORKDIR /usr/src/app

COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt

COPY . .

CMD [ "python", "./your-daemon-or-script.py" ]


requirements.txt

flask