Notice
Recent Posts
Recent Comments
Link
목록도커운용팁 (1)
고양이 여름이의 지식채널

docker를 최대한 활용할 수 있도록 도와주는 몇 가지 팁과 요령에 대해서 포스팅합니다. 도커 파일 캐싱 (dockerfile caching) FROM python:3.9.5-slim-buster # 작업 디렉토리 설정 WORKDIR /app # requirements.txt 파일 복사 COPY requirements.txt . # 필요한 패키지 설치 RUN apt-get update && apt-get install -y build-essential # 기본적으로 캐싱이 되나 --no-cache-dir 옵션을 사용하면 캐싱하지 않음 # RUN pip install -r --no-cache-dir requirements.txt RUN pip install -r requirements.txt # 소스 코..
Programming/Docker
2023. 3. 6. 21:54