Skip to content

Instantly share code, notes, and snippets.

@pwl

pwl/Dockerfile Secret

Last active November 14, 2017 13:59
Show Gist options
  • Save pwl/a26726fda94ac7f4cbfb57e4fe98bf28 to your computer and use it in GitHub Desktop.
Save pwl/a26726fda94ac7f4cbfb57e4fe98bf28 to your computer and use it in GitHub Desktop.
scanpy-locale-setup
FROM ubuntu:17.10
RUN apt-get update && \
apt-get install -y python3 python3-pip locales && \
apt-get clean
RUN pip3 install numpy
RUN python3 --version
RUN pip3 --version
RUN locale-gen en_US.UTF-8
ENV LC_ALL en_US.UTF-8
RUN pip3 install scanpy
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment