From 222b5ce8fffeef75be225fe7b93f89bc47145169 Mon Sep 17 00:00:00 2001 From: Lukasz Klimek <842586+lklimek@users.noreply.github.com> Date: Thu, 5 Sep 2024 10:02:54 +0200 Subject: [PATCH] chore: alpine shell fix --- Dockerfile-alpine | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile-alpine b/Dockerfile-alpine index b550b2b..634d2a6 100644 --- a/Dockerfile-alpine +++ b/Dockerfile-alpine @@ -2,8 +2,6 @@ FROM rust:1.80-alpine3.20 -SHELL ["/bin/bash", "-exc"] - RUN apk add --no-cache \ git \ wget \ @@ -14,6 +12,8 @@ RUN apk add --no-cache \ unzip \ bash +SHELL ["/bin/bash", "-exc"] + # one of: aarch_64, x86_64 # ARG PROTOC_ARCH=x86_64 ARG TARGETPLATFORM