Some checks failed
Build and Push Dev Containers / build (push) Failing after 19s
16 lines
194 B
Docker
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" ]
|