We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2bae4d commit 29e3f04Copy full SHA for 29e3f04
docker/Dockerfile
@@ -7,6 +7,13 @@ FROM continuumio/miniconda3 AS build
7
# File Author / Maintainer
8
LABEL maintainer="Adam Taylor <adam.taylor@sagebase.org>"
9
10
+# Install build dependencies needed for pip packages with C extensions (e.g., minerva-lib)
11
+RUN apt-get update && apt-get install --yes --no-install-recommends \
12
+ gcc \
13
+ g++ \
14
+ make \
15
+ && rm -rf /var/lib/apt/lists/*
16
+
17
# Install the package as normal:
18
COPY environment.yml .
19
RUN conda env create -f environment.yml
0 commit comments