Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Remi-Gau committed Sep 29, 2024
1 parent 3dbb76f commit a9f99dd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@ ENV SPMROOT="/opt/CAT12${CAT_VERSION}" \
PATH="$DENO_INSTALL/bin:/opt/CAT12${CAT_VERSION}:$PATH" \
STANDALONE="/opt/CAT12${CAT_VERSION}/standalone"

RUN export ND_ENTRYPOINT="/neurodocker/startup.sh" \
&& apt-get update -qq \
RUN apt-get update -qq \
&& apt-get install -y -q --no-install-recommends \
apt-utils \
bc \
bzip2 \
ca-certificates \
curl \
dbus-x11 \
git \
libncurses5 \
libxext6 \
libxmu6 \
Expand Down Expand Up @@ -73,8 +73,8 @@ RUN curl -fsSL https://deno.land/install.sh | sh && \
RUN mkdir -p /code
COPY . /code
RUN cd code && \
git restore . \
pip install -r /code/requirements.txt && \
git restore . && \
pip install -r requirements.txt && \
pip install .

RUN ls /code && find /code -type f -print0 | xargs -0 chmod +r
Expand Down

0 comments on commit a9f99dd

Please sign in to comment.