All checks were successful
Build and Push Dev Containers / build (push) Successful in 6m50s
18 lines
233 B
Docker
18 lines
233 B
Docker
FROM alpine:latest
|
|
|
|
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" ]
|