drone-semantic-release/templates/build_docker.Dockerfile

20 lines
504 B
Docker
Raw Permalink Normal View History

2022-08-21 15:29:42 +02:00
FROM node:alpine
2022-08-21 14:57:32 +02:00
2022-08-21 15:29:42 +02:00
# Install ssh client and git
RUN apk add --no-cache openssh-client git
RUN yarn global add semantic-release@18
2022-08-21 15:34:10 +02:00
RUN yarn global add @semantic-release/git @semantic-release/changelog
2022-08-21 15:29:42 +02:00
# Download public key for github.com
2022-08-21 16:02:06 +02:00
RUN \
mkdir -p -m 0700 ~/.ssh \
&& ssh-keyscan github.com >> ~/.ssh/known_hosts \
&& ssh-keyscan git.front.kjuulh.io >> ~/.ssh/known_hosts
WORKDIR /src/app/
2022-08-21 14:57:32 +02:00
2022-08-21 16:02:06 +02:00
#RUN --mount=type=ssh,id=default semantic-release --no-ci
# run as cmd during pipeline, such easier