diff --git a/.github/workflows/test_docker_build.yml b/.github/workflows/test_docker_build.yml index 4d824cea8..bde360986 100644 --- a/.github/workflows/test_docker_build.yml +++ b/.github/workflows/test_docker_build.yml @@ -12,6 +12,7 @@ on: jobs: build: strategy: + fail-fast: false matrix: platform: [macos-latest, windows-latest, ubuntu-latest] runs-on: ${{ matrix.platform }} diff --git a/Dockerfile b/Dockerfile index 77eaa9d65..5f70a3019 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,9 +9,10 @@ RUN apk add --update libc6-compat WORKDIR /usr/src/packages -# Copy root package.json and lockfile +# Copy root package.json COPY package.json ./ -COPY yarn.lock ./ +# Conditonal copy lockfile +COPY yarn.loc[k] ./ # Copy components package.json COPY packages/components/package.json ./packages/components/package.json