Skip to content

Instantly share code, notes, and snippets.

View ajvengo's full-sized avatar
🏠
Working from home

Vladimir Rapatskii ajvengo

🏠
Working from home
View GitHub Profile
@ajvengo
ajvengo / Dockerfile
Last active November 15, 2017 11:46
Debian stretch + python, curl, jq, datamash to run performance tests scripts
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); \
@ajvengo
ajvengo / Dockerfile
Created August 12, 2017 15:15
Debian based python3 stack: lmfit, matplotlib, numpy, pandas, scipy, seaborn
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
@ajvengo
ajvengo / Dockerfile
Last active August 12, 2017 14:39
Alpine based python2 stack: scipy, numpy, seaborn, pandas, lmfit, matplotlib
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 && \