This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM debian:stretch-slim as zstd | |
| MAINTAINER Vladimir Rapatskiy <rapatsky@gmail.com> | |
| WORKDIR /tmp | |
| RUN set -ex; \ | |
| apt-get -q update; \ | |
| apt-get install -yq --no-install-recommends ca-certificates curl gcc make libc6-dev zlib1g-dev; \ | |
| apt-get clean; \ | |
| curl -sSL https://github.com/facebook/zstd/archive/v1.3.2.tar.gz | tar xz; \ | |
| cd zstd-1.3.2; \ | |
| CFLAGS="-march=sandybridge -O3 -flto" make -j$(nproc); \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM debian:stretch-slim | |
| MAINTAINER Vladimir Rapatskiy <rapatsky@gmail.com> | |
| RUN apt-get update && \ | |
| apt-get install -qq --no-install-recommends \ | |
| libopenblas-base \ | |
| python3-lmfit \ | |
| python3-seaborn && \ | |
| apt-get clean |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM alpine:edge | |
| MAINTAINER Vladimir Rapatskiy <rapatsky@gmail.com> | |
| RUN echo "http://dl-cdn.alpinelinux.org/alpine/edge/testing" >>/etc/apk/repositories && \ | |
| apk update && \ | |
| apk add --no-cache \ | |
| py-matplotlib \ | |
| py-scipy \ | |
| py2-pip && \ |