mirror of
https://github.com/fbartels/cloudron-drone-app.git
synced 2024-11-25 14:30:59 +00:00
1361023637
switch cli helper to dind base use local socket in all steps ignore tags file use txt file format for secrets
11 lines
573 B
Docker
11 lines
573 B
Docker
FROM docker:dind
|
|
# hadolint ignore=DL3018
|
|
RUN apk add --no-cache jq make npm perl python3
|
|
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
|
|
RUN npm -g install cloudron@4.5.3 --unsafe && npm cache clean --force && \
|
|
cloudron --version
|