Tutorial
-
Docker + Flask 튜토리얼컴퓨터/파이썬 2020. 7. 30. 22:14
Docker 1. 사전 준비 Docker, WSL2 (윈도우를 위한 Linux 시스템) WSL 2 Linux용 Windows 하위 시스템 2 docs.microsoft.com 아래 flask-app.zip 압축 해제한다. 2. DockerFile 우선 DockerFile 구조를 한 번 살펴보겠다. FROM python:3 # set a directory for the app WORKDIR /app # copy all the files to the container COPY . . # install dependencies RUN pip install --no-cache-dir -r requirements.txt # tell the port number the container should expose EX..