You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Actual behavior
When running a build in Cloud Build, it fails with
failed to execute command: extracting fs from image: removing whiteout .wh.dev: unlinkat //dev/pts/ptmx: operation not permitted
If I move ARG DIST=/opt after FROM (see below), then the build succeeds. However, I keep it above because it's used in multi-staged builds (where a single ARG value is shared among multiple stages). But the error appears even in the absence of other stages.
Expected behavior
Build succeeds.
Alternatively, would it be possible to whitelist /dev/pts?
To Reproduce
Steps to reproduce the behavior:
Dockerfile:
ARG DIST=/opt
FROM gcr.io/cloud-builders/wget
ARG DIST
RUN echo ${DIST}
I should add that this issue started happening for us today (2/6/20) ~1:48 PM EST, without any changes to the Dockerfile or cloudbuild.yaml. Prior to that, a successful build happened earlier today ~10:29 AM EST, which I assume indicates that something changed on Cloud Build infra side..
Actual behavior
When running a build in Cloud Build, it fails with
If I move
ARG DIST=/opt
afterFROM
(see below), then the build succeeds. However, I keep it above because it's used in multi-staged builds (where a single ARG value is shared among multiple stages). But the error appears even in the absence of other stages.Expected behavior
Build succeeds.
Alternatively, would it be possible to whitelist
/dev/pts
?To Reproduce
Steps to reproduce the behavior:
Additional Information
gcr.io/kaniko-project/executor@sha256:565d31516f9bb91763dcf8e23ee161144fd4e27624b257674136c71559ce4493
(v0.17.1
)This might be related to #1001
Triage Notes for the Maintainers
--cache
flagThe text was updated successfully, but these errors were encountered: