diff options
author | Andreas Fankhauser (tux-six, hiddenalpha.ch) | 2022-07-29 02:09:41 +0200 |
---|---|---|
committer | Andreas Fankhauser (tux-six, hiddenalpha.ch) | 2022-07-29 02:09:41 +0200 |
commit | 2fe74edb50f42ff1f9749f3c13e3056678da2d9c (patch) | |
tree | 2c21948de60364f47e3d7f99e6df1e9dfe7f8874 /contrib/build-using-docker | |
parent | a0ea003d2d0c4b9769cc02ae18203110e0214e31 (diff) | |
download | DeflateAndInflate-2fe74edb50f42ff1f9749f3c13e3056678da2d9c.zip DeflateAndInflate-2fe74edb50f42ff1f9749f3c13e3056678da2d9c.tar.gz |
Fix CMD in Dockerfile
Diffstat (limited to 'contrib/build-using-docker')
-rw-r--r-- | contrib/build-using-docker/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/build-using-docker/Dockerfile b/contrib/build-using-docker/Dockerfile index c226a8a..1e0f89a 100644 --- a/contrib/build-using-docker/Dockerfile +++ b/contrib/build-using-docker/Dockerfile @@ -30,5 +30,5 @@ USER 1000:1000 # run for max 10 hrs. Because this container is not meant to stay running # forever. -CMD ["sleep 36000"] +CMD ["sleep", "36000"] |