Skip to content
Snippets Groups Projects
Commit b0968e26 authored by Griefed's avatar Griefed :joystick:
Browse files

feat: Add discord.sh for webhook messages

parent ef94283e
No related branches found
Tags 2.2.3
No related merge requests found
...@@ -4,12 +4,20 @@ RUN \ ...@@ -4,12 +4,20 @@ RUN \
apk add \ apk add \
curl && \ curl && \
LATEST_DOCKERX=$(curl --silent "https://api.github.com/repos/docker/buildx/releases/latest" | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/' | cut -c 2-) && \ LATEST_DOCKERX=$(curl --silent "https://api.github.com/repos/docker/buildx/releases/latest" | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/' | cut -c 2-) && \
curl \ echo "**** Acquire docker-buildx" && \
-L \ curl \
--output /docker-buildx \ -L \
"https://github.com/docker/buildx/releases/download/v${LATEST_DOCKERX}/buildx-v${LATEST_DOCKERX}.linux-amd64" && \ --output /docker-buildx \
chmod a+x \ "https://github.com/docker/buildx/releases/download/v${LATEST_DOCKERX}/buildx-v${LATEST_DOCKERX}.linux-amd64" && \
/docker-buildx chmod a+x \
/docker-buildx && \
echo "**** Acquire discord.sh from ChaoticWeg/discord.sh" && \
curl \
-L \
--output /discord.sh \
https://raw.githubusercontent.com/ChaoticWeg/discord.sh/master/discord.sh && \
chmod a+x \
/discord.sh
FROM docker:19.03-dind FROM docker:19.03-dind
...@@ -17,6 +25,7 @@ LABEL maintainer="Griefed <griefed@griefed.de>" ...@@ -17,6 +25,7 @@ LABEL maintainer="Griefed <griefed@griefed.de>"
LABEL description="Provides GitLab Semantic Release, buildx, JDK 8, NodeJS for Griefed's GitLab CI/CD pipelines." LABEL description="Provides GitLab Semantic Release, buildx, JDK 8, NodeJS for Griefed's GitLab CI/CD pipelines."
COPY --from=fetcher /docker-buildx /usr/lib/docker/cli-plugins/docker-buildx COPY --from=fetcher /docker-buildx /usr/lib/docker/cli-plugins/docker-buildx
COPY --from=fetcher /discord.sh /discord.sh
ENV DOCKER_CLI_EXPERIMENTAL=enabled ENV DOCKER_CLI_EXPERIMENTAL=enabled
...@@ -29,6 +38,7 @@ RUN \ ...@@ -29,6 +38,7 @@ RUN \
ca-certificates \ ca-certificates \
curl \ curl \
git \ git \
jq \
nodejs \ nodejs \
npm \ npm \
openjdk8 && \ openjdk8 && \
...@@ -43,9 +53,11 @@ RUN \ ...@@ -43,9 +53,11 @@ RUN \
@semantic-release/gitlab \ @semantic-release/gitlab \
@semantic-release/npm \ @semantic-release/npm \
@semantic-release/release-notes-generator && \ @semantic-release/release-notes-generator && \
echo "**** Making docker-buildx executable for all ****" && \ echo "**** Making docker-buildx and discord.sh executable for all ****" && \
chmod a+x \ chmod a+x \
/usr/lib/docker/cli-plugins/docker-buildx && \ /usr/lib/docker/cli-plugins/docker-buildx && \
chmod a+x \
/discord.sh && \
echo "**** Installing quasar ****" && \ echo "**** Installing quasar ****" && \
npm install -g \ npm install -g \
@quasar/cli && \ @quasar/cli && \
......
...@@ -15,3 +15,4 @@ Combines: ...@@ -15,3 +15,4 @@ Combines:
- [GitLab Semantic Release](https://git.griefed.de/prosper/gitlab-semantic-release) - [GitLab Semantic Release](https://git.griefed.de/prosper/gitlab-semantic-release)
- NodeJS for CI - NodeJS for CI
- Docker-in-Docker - Docker-in-Docker
- [discord.sh](https://github.com/ChaoticWeg/discord.sh)
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment