feat: Updated base image to force bash usage
All checks were successful
Build and Push Dev Containers / build (push) Successful in 4m56s

This commit is contained in:
2025-09-10 23:23:16 +01:00
parent 21c987dd38
commit 9291383358

View File

@@ -3,8 +3,10 @@ FROM alpine:latest
RUN apk add --no-cache \ RUN apk add --no-cache \
bash \ bash \
curl \ curl \
helix helix \
shadow
RUN chsh -s /bin/bash
RUN mkdir /app RUN mkdir /app
WORKDIR /app WORKDIR /app