Skip to content

Commit

Permalink
Merge pull request #83 from chitang233/main
Browse files Browse the repository at this point in the history
Fixed Docker building
  • Loading branch information
sudoskys committed Dec 22, 2022
2 parents 2374a91 + 9b7cf6e commit b4b4582
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ FROM python:3.10-slim AS builder
ENV WORKDIR /app
WORKDIR $WORKDIR
ADD . $WORKDIR
RUN apt-get install build-essential -y
RUN pip install --upgrade --no-cache-dir pip && pip install --no-cache-dir -r requirements.txt
RUN apt update && apt install build-essential -y
RUN pip install --upgrade --no-cache-dir pip && pip install --no-cache-dir -r requirements.txt

0 comments on commit b4b4582

Please sign in to comment.