Files
base-images/base/Dockerfile
Luke Else e43df66363
All checks were successful
Build and Push Dev Containers / build (push) Successful in 7m22s
feat: Walking over the edge...
2025-11-13 20:39:34 +00:00

18 lines
231 B
Docker

FROM alpine:edge
RUN apk add --no-cache \
bash \
curl \
helix \
shadow \
openssl-dev \
pkgconf \
build-base \
ca-certificates
RUN chsh -s /bin/bash
RUN mkdir /app
WORKDIR /app
CMD [ "/bin/bash" ]