mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-08-09 11:58:16 +00:00
kata-deploy: fix tar command in dockerfile
tar params are passed wrongly Fixes: #3394 Signed-off-by: Snir Sheriber <ssheribe@redhat.com>
This commit is contained in:
parent
a0bb8c5599
commit
dfbe74c489
@ -21,7 +21,7 @@ RUN curl -LO "https://storage.googleapis.com/kubernetes-release/release/$(curl -
|
||||
&& mv ./kubectl /usr/local/bin/kubectl
|
||||
|
||||
RUN curl -LO "https://github.com/Azure/aks-engine/releases/download/${AKS_ENGINE_VER}/aks-engine-${AKS_ENGINE_VER}-linux-${ARCH}.tar.gz" \
|
||||
&& tar "xvf aks-engine-${AKS_ENGINE_VER}-linux-${ARCH}.tar.gz" \
|
||||
&& tar xvf "aks-engine-${AKS_ENGINE_VER}-linux-${ARCH}.tar.gz" \
|
||||
&& mv "aks-engine-${AKS_ENGINE_VER}-linux-${ARCH}/aks-engine" /usr/local/bin/aks-engine \
|
||||
&& rm "aks-engine-${AKS_ENGINE_VER}-linux-${ARCH}.tar.gz"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user