mirror of
https://github.com/jupyterhub/jupyterhub.git
synced 2025-10-15 05:53:00 +00:00

apologies to anyone finding this commit via git blame or log run the autoformatting by pre-commit run --all-files
10 lines
174 B
Docker
10 lines
174 B
Docker
FROM python:3.6.3-alpine3.6
|
|
|
|
ARG JUPYTERHUB_VERSION=0.8.1
|
|
|
|
RUN pip3 install --no-cache jupyterhub==${JUPYTERHUB_VERSION}
|
|
ENV LANG=en_US.UTF-8
|
|
|
|
USER nobody
|
|
CMD ["jupyterhub"]
|