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" ]
