Files
base-images/base/Dockerfile
Luke Else 964824589f
Some checks failed
Build and Push Dev Containers / build (push) Failing after 19s
feat: Added additional base requirements to image
2025-11-02 15:12:12 +00:00

16 lines
194 B
Docker

FROM alpine:latest
RUN apk add --no-cache \
bash \
curl \
helix \
shadow \
openssl \
pkgconfig \
RUN chsh -s /bin/bash
RUN mkdir /app
WORKDIR /app
CMD [ "/bin/bash" ]