소스 검색

Leave no Python pip temporary cache in backend Docker image (#704)

dependabot/npm_and_yarn/mobile/ansi-regex-4.1.1
Peter Dave Hello 2 년 전
committed by GitHub
부모
커밋
57b7f7dbe9
No known key found for this signature in database GPG 키 ID: 4AEE18F83AFDEB23
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      containers/backend/Dockerfile

+ 2
- 2
containers/backend/Dockerfile 파일 보기

@@ -4,8 +4,8 @@ LABEL name="LessPass Backend"
RUN mkdir /opt/backend
WORKDIR /opt/backend
COPY requirements.txt /opt/backend
RUN python -m pip install --upgrade pip
RUN python -m pip install -r requirements.txt
RUN python -m pip install --no-cache-dir --upgrade pip
RUN python -m pip install --no-cache-dir -r requirements.txt
COPY . /opt/backend
RUN python --version
EXPOSE 8000


불러오는 중...
취소
저장