All checks were successful
Build and Push Dev Containers / build (push) Successful in 4m56s
14 lines
162 B
Docker
14 lines
162 B
Docker
FROM alpine:latest
|
|
|
|
RUN apk add --no-cache \
|
|
bash \
|
|
curl \
|
|
helix \
|
|
shadow
|
|
|
|
RUN chsh -s /bin/bash
|
|
RUN mkdir /app
|
|
WORKDIR /app
|
|
|
|
CMD [ "/bin/bash" ]
|