Switched docker from bash to sh

This commit is contained in:
Liliesh 2024-06-28 19:26:32 +02:00
parent 3303d62959
commit 90cca67c93
Signed by: liliesh
GPG key ID: 680387646C7BAE8E

View file

@ -1,5 +1,5 @@
FROM alpine:3.20.1
# Install base
RUN apk add --no-cache docker docker-compose bash
CMD [ "/bin/bash" ]
RUN apk add --no-cache docker docker-compose
CMD [ "/bin/sh" ]