mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 11:31:49 +01:00
3c55eb11b1
Signed-off-by: Jess Frazelle <acidburn@google.com>
31 lines
633 B
Docker
31 lines
633 B
Docker
FROM alpine:latest
|
|
|
|
RUN apk add --no-cache \
|
|
ca-certificates \
|
|
bash \
|
|
gfortran \
|
|
openjdk8-jre-base \
|
|
lapack \
|
|
python \
|
|
py2-pip
|
|
|
|
# Install the requirements
|
|
RUN set -x \
|
|
&& apk add --no-cache --virtual .build-deps \
|
|
build-base \
|
|
git \
|
|
lapack-dev \
|
|
libffi-dev \
|
|
libressl-dev \
|
|
python-dev \
|
|
&& ln -s /usr/include/locale.h /usr/include/xlocale.h \
|
|
&& git clone --depth 1 https://github.com/sarahsharp/foss-heartbeat.git /usr/src/foss-heartbeat \
|
|
&& ( \
|
|
cd /usr/src/foss-heartbeat \
|
|
&& pip install -r requirements.txt \
|
|
&& pip install statistics \
|
|
) \
|
|
&& apk del .build-deps
|
|
|
|
WORKDIR /usr/src/foss-heartbeat
|