Skip to content

Instantly share code, notes, and snippets.

@jtlz2
Last active September 1, 2020 15:51
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jtlz2/b0f4bc07ce2ff04bc193337f2327c13b to your computer and use it in GitHub Desktop.
Save jtlz2/b0f4bc07ce2ff04bc193337f2327c13b to your computer and use it in GitHub Desktop.
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment