Skip to content

Commit

Permalink
Merge pull request #10 from breakmagazine/feat/deploy
Browse files Browse the repository at this point in the history
fix: dockerfile.prod에서 pip upgrade 하도록 수정
  • Loading branch information
yjoonjang authored May 25, 2024
2 parents ca3bc27 + 108bf1f commit e020fc0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile.prod
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ RUN apk update && apk add python3 python3-dev mariadb-dev build-base && pip3 ins

# install dependencies
COPY ./requirements.txt .
RUN pip wheel --no-cache-dir --no-deps --wheel-dir /usr/src/app/wheels -r requirements.txt
RUN pip install --upgrade pip && pip wheel --no-cache-dir --no-deps --wheel-dir /usr/src/app/wheels -r requirements.txt


#########
Expand Down

0 comments on commit e020fc0

Please sign in to comment.