Skip to content

Instantly share code, notes, and snippets.

View jtlz2's full-sized avatar

jtlz2

View GitHub Profile
@jtlz2
jtlz2 / Dockerfile_datascience
Last active September 1, 2020 15:51
Dockerfile stub - Alpine Linux with numpy etc. for data science
FROM python:3.7-alpine
RUN echo "@testing http://dl-cdn.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories
RUN apk add --update --no-cache py3-numpy py3-pandas@testing
# Continue from here