Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
DoomHammer authored Nov 27, 2023
1 parent bf2d5fa commit 6317ebd
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@ COPY pyproject.toml poetry.lock /src/orpheus/

WORKDIR /src/orpheus

RUN pip install --no-cache-dir poetry==1.7.1 && poetry install
RUN apt-get update \
&& apt-get install -y --no-install-recommends build-essential \
&& rm -rf /var/lib/apt/lists/* \
&& pip install --no-cache-dir poetry==1.7.1 \
&& poetry install

COPY . /src/orpheus/

Expand Down

0 comments on commit 6317ebd

Please sign in to comment.