Permalink
Fetching contributors…
Cannot retrieve contributors at this time
15 lines (8 sloc) 220 Bytes
FROM alpine:latest
RUN apk update && apk upgrade && \
apk add --no-cache bash git openssh-client ca-certificates
ADD dist/rocket /bin/rocket
RUN adduser -D -g '' bloom
USER bloom
WORKDIR /rocket
CMD ["rocket"]