kopia lustrzana https://github.com/jupyterhub/repo2docker
Fixs dockerfile tests that did not work
rodzic
89686833c0
commit
0709c0a656
|
|
@ -1,6 +1,12 @@
|
|||
FROM python:3.5
|
||||
|
||||
ENTRYPOINT "/bin/sh"
|
||||
RUN pip install --no-cache notebook
|
||||
|
||||
CMD "/bin/sh"
|
||||
|
||||
ADD sayhi.sh /usr/local/bin/sayhi.sh
|
||||
ADD verify verify
|
||||
|
||||
ARG NB_UID
|
||||
ENV HOME /tmp
|
||||
USER $NB_UID
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
#!/bin/sh
|
||||
#!/bin/bash
|
||||
set -euo pipefail
|
||||
/usr/local/bin/sayhi.sh
|
||||
|
|
|
|||
|
|
@ -1,6 +1,12 @@
|
|||
FROM python:3.5
|
||||
|
||||
ENTRYPOINT "/bin/sh"
|
||||
RUN pip install --no-cache notebook
|
||||
|
||||
CMD "/bin/sh"
|
||||
|
||||
ADD sayhi.sh /usr/local/bin/sayhi.sh
|
||||
ADD verify verify
|
||||
|
||||
ARG NB_UID
|
||||
ENV HOME /tmp
|
||||
USER $NB_UID
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
#!/bin/sh
|
||||
#!/bin/bash
|
||||
set -euo pipefail
|
||||
/usr/local/bin/sayhi.sh
|
||||
|
|
|
|||
Ładowanie…
Reference in New Issue