Browse Source

Testing dockerfile fix.

pull/342/head
Sebastian 7 years ago
parent
commit
88528a83d8
  1. 4
      Dockerfile
  2. 2
      Dockerfile.build

4
Dockerfile

@ -13,8 +13,8 @@ RUN cd /tmp && npm install
COPY . . COPY . .
# Build Frontend # Build Frontend
RUN cp -a /tmp/node_modules /src/Squidex/ \ RUN cp -a /tmp/node_modules src/Squidex/ \
&& cd /src/Squidex \ && cd src/Squidex \
&& npm run test:coverage \ && npm run test:coverage \
&& npm run build:copy \ && npm run build:copy \
&& npm run build && npm run build

2
Dockerfile.build

@ -11,7 +11,7 @@ RUN cd /tmp \
COPY . . COPY . .
# Build Frontend # Build Frontend
RUN cp -a /tmp/node_modules /src/Squidex/ \ RUN cp -a /tmp/node_modules src/Squidex/ \
&& cd /src/Squidex \ && cd /src/Squidex \
&& npm run test:coverage \ && npm run test:coverage \
&& npm run build:copy \ && npm run build:copy \

Loading…
Cancel
Save