Change chmod 777 to a+rwx

This commit is contained in:
Austin Anderson 2018-08-23 11:35:54 -07:00
parent 54dfc4c499
commit 1f926c94ff
10 changed files with 10 additions and 10 deletions

View File

@ -27,4 +27,4 @@ WORKDIR /tf
VOLUME ["/tf"]
COPY bashrc /etc/bash.bashrc
RUN chmod 777 /etc/bash.bashrc
RUN chmod a+rwx /etc/bash.bashrc

View File

@ -88,7 +88,7 @@ RUN echo "deb [arch=amd64] http://storage.googleapis.com/bazel-apt stable jdk1.8
apt-get install -y bazel
COPY bashrc /etc/bash.bashrc
RUN chmod 777 /etc/bash.bashrc
RUN chmod a+rwx /etc/bash.bashrc
RUN ${PIP} install jupyter

View File

@ -86,4 +86,4 @@ RUN echo "deb [arch=amd64] http://storage.googleapis.com/bazel-apt stable jdk1.8
apt-get install -y bazel
COPY bashrc /etc/bash.bashrc
RUN chmod 777 /etc/bash.bashrc
RUN chmod a+rwx /etc/bash.bashrc

View File

@ -57,7 +57,7 @@ ARG TF_PACKAGE=tensorflow
RUN ${PIP} install ${TF_PACKAGE}
COPY bashrc /etc/bash.bashrc
RUN chmod 777 /etc/bash.bashrc
RUN chmod a+rwx /etc/bash.bashrc
RUN ${PIP} install jupyter

View File

@ -55,4 +55,4 @@ ARG TF_PACKAGE=tensorflow
RUN ${PIP} install ${TF_PACKAGE}
COPY bashrc /etc/bash.bashrc
RUN chmod 777 /etc/bash.bashrc
RUN chmod a+rwx /etc/bash.bashrc

View File

@ -108,7 +108,7 @@ RUN echo "deb [arch=amd64] http://storage.googleapis.com/bazel-apt stable jdk1.8
apt-get install -y bazel
COPY bashrc /etc/bash.bashrc
RUN chmod 777 /etc/bash.bashrc
RUN chmod a+rwx /etc/bash.bashrc
RUN ${PIP} install jupyter

View File

@ -106,4 +106,4 @@ RUN echo "deb [arch=amd64] http://storage.googleapis.com/bazel-apt stable jdk1.8
apt-get install -y bazel
COPY bashrc /etc/bash.bashrc
RUN chmod 777 /etc/bash.bashrc
RUN chmod a+rwx /etc/bash.bashrc

View File

@ -78,7 +78,7 @@ ARG TF_PACKAGE=tensorflow-gpu
RUN ${PIP} install ${TF_PACKAGE}
COPY bashrc /etc/bash.bashrc
RUN chmod 777 /etc/bash.bashrc
RUN chmod a+rwx /etc/bash.bashrc
RUN ${PIP} install jupyter

View File

@ -76,4 +76,4 @@ ARG TF_PACKAGE=tensorflow-gpu
RUN ${PIP} install ${TF_PACKAGE}
COPY bashrc /etc/bash.bashrc
RUN chmod 777 /etc/bash.bashrc
RUN chmod a+rwx /etc/bash.bashrc

View File

@ -1,2 +1,2 @@
COPY bashrc /etc/bash.bashrc
RUN chmod 777 /etc/bash.bashrc
RUN chmod a+rwx /etc/bash.bashrc