2020-10-17 20:43:08 +00:00
|
|
|
FROM docker:dind
|
|
|
|
# hadolint ignore=DL3018
|
|
|
|
RUN apk add --no-cache jq make npm perl python3
|
2020-10-16 21:50:57 +00:00
|
|
|
ENV DOCKERIZE_VERSION v0.6.1
|
|
|
|
RUN wget https://github.com/jwilder/dockerize/releases/download/$DOCKERIZE_VERSION/dockerize-alpine-linux-amd64-$DOCKERIZE_VERSION.tar.gz && \
|
|
|
|
tar -C /usr/local/bin -xzvf dockerize-alpine-linux-amd64-$DOCKERIZE_VERSION.tar.gz && \
|
|
|
|
rm dockerize-alpine-linux-amd64-$DOCKERIZE_VERSION.tar.gz
|
|
|
|
|
|
|
|
# use --unsafe to not execute post actions as user nobody
|
2022-06-22 14:53:52 +00:00
|
|
|
RUN npm -g install cloudron@5.0.0 --unsafe && npm cache clean --force && \
|
2020-10-16 21:50:57 +00:00
|
|
|
cloudron --version
|