Skip to content

Commit

Permalink
ci: use build-essential for dev image
Browse files Browse the repository at this point in the history
Sometimes a wheel isn't provided so we need to build. Doesn't cost much since
its the dev container anyways.
  • Loading branch information
gadomski committed Sep 15, 2022
1 parent 86420c6 commit 581f443
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ RUN pip install --prefix=/install .[all] \
FROM base AS dev
# Install make for the docs build
RUN apt-get update \
&& apt-get install -y make \
&& apt-get install -y make build-essential \
&& rm -rf /var/lib/apt/lists/*
COPY --from=dep_builder /install /opt/conda
RUN conda install -c conda-forge pandoc && conda clean -af
Expand Down

0 comments on commit 581f443

Please sign in to comment.