All checks were successful
Build and Push Dev Containers / build (push) Successful in 5m3s
16 lines
196 B
Docker
16 lines
196 B
Docker
FROM alpine:edge
|
|
|
|
RUN apk add --no-cache \
|
|
curl \
|
|
helix \
|
|
shadow \
|
|
openssl-dev \
|
|
pkgconf \
|
|
build-base \
|
|
ca-certificates
|
|
|
|
RUN mkdir /app
|
|
WORKDIR /app
|
|
|
|
CMD [ "/bin/sh" ]
|