Skip to content
This repository has been archived by the owner on Oct 13, 2024. It is now read-only.

Commit

Permalink
build(docker): fix docker build (#317)
Browse files Browse the repository at this point in the history
  • Loading branch information
ReenigneArcher authored Oct 5, 2023
1 parent 8b8daf1 commit 0455ea2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ RUN apt-get update -y \
build-essential \
nodejs \
npm \
pkg-config \
libopenblas-dev \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

Expand All @@ -23,7 +25,7 @@ WORKDIR /build
COPY . .

# setup python requirements
RUN python -m pip install --no-cache-dir --upgrade pip && \
RUN python -m pip install --no-cache-dir --upgrade pip setuptools wheel && \
python -m pip install --no-cache-dir -r requirements.txt

# compile locales
Expand Down

0 comments on commit 0455ea2

Please sign in to comment.