File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -66,9 +66,9 @@ ARG DOCKER_PATH="/usr/local/bin/docker"
66
66
RUN mv -f "${DOCKER_PATH}" "${DOCKER_PATH}.orig"
67
67
68
68
# Install dond-shim at the same path as the original docker cli
69
- ARG DOND_SHIM_VERSION="0.6.0 "
69
+ ARG DOND_SHIM_VERSION="0.6.1 "
70
70
ADD "https://github.com/felipecrs/docker-on-docker-shim/raw/v${DOND_SHIM_VERSION}/dond" "${DOCKER_PATH}"
71
- RUN chmod +x "${DOCKER_PATH}"
71
+ RUN chmod 755 "${DOCKER_PATH}"
72
72
```
73
73
74
74
### As ` dond `
@@ -82,8 +82,8 @@ FROM docker:latest
82
82
RUN apk add --no-cache bash
83
83
84
84
# Install dond-shim to /usr/local/bin/dond
85
- ARG DOND_SHIM_VERSION="0.6.0 "
85
+ ARG DOND_SHIM_VERSION="0.6.1 "
86
86
ARG DOND_SHIM_PATH="/usr/local/bin/dond"
87
87
ADD "https://github.com/felipecrs/docker-on-docker-shim/raw/v${DOND_SHIM_VERSION}/dond" "${DOND_SHIM_PATH}"
88
- RUN chmod +x "${DOND_SHIM_PATH}"
88
+ RUN chmod 755 "${DOND_SHIM_PATH}"
89
89
```
You can’t perform that action at this time.
0 commit comments