We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43bca6f commit 543b8e0Copy full SHA for 543b8e0
Dockerfile
@@ -4,7 +4,7 @@ FROM node:8.12-alpine AS node
4
WORKDIR /code
5
6
COPY ./frontend/package.json ./frontend/yarn.lock /code/
7
-RUN yarn install --pure-lockfile
+RUN yarn install --pure-lockfile --ignore-scripts
8
9
COPY ./frontend/ /code/
10
RUN yarn build
build.sh
@@ -1,6 +1,8 @@
1
#!/bin/bash
2
set -euo pipefail
3
+export DOCKER_BUILDKIT=1
+
# Build the compile stage:
docker build --target node \
--cache-from=falco/falco-front:compile-stage \
0 commit comments