Skip to content

Commit

Permalink
Remove set -ex from RUN commands
Browse files Browse the repository at this point in the history
  • Loading branch information
tw4l committed Mar 16, 2022
1 parent 249525d commit 2060130
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,17 @@ RUN set -ex \

COPY requirements /build

RUN set -ex pip install --no-cache-dir -r /build/development.txt
RUN pip install --no-cache-dir -r /build/development.txt

COPY package.json package-lock.json /build/

RUN set -ex npm install --prefix /build
RUN npm install --prefix /build

COPY . /src

WORKDIR /src

RUN set -xe mv /build/node_modules ./
RUN mv /build/node_modules ./

EXPOSE 8000

Expand Down

0 comments on commit 2060130

Please sign in to comment.