Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • prosper/gitlab-ci-cd
1 result
Show changes
Commits on Source (4)
## [2.2.9](https://git.griefed.de/prosper/gitlab-ci-cd/compare/2.2.8...2.2.9) (2023-04-03)
### 🦊 CI/CD
* Update Node to version 18. ([1bd579c](https://git.griefed.de/prosper/gitlab-ci-cd/commit/1bd579ce0e88716ec2365edb46be39deb43290d1))
### Other
* Fix renovate config ([ad7a76f](https://git.griefed.de/prosper/gitlab-ci-cd/commit/ad7a76fef46da724a3f7f2935c3adfa3694068cd))
## [2.2.8](https://git.griefed.de/prosper/gitlab-ci-cd/compare/2.2.7...2.2.8) (2023-04-01)
......
......@@ -24,8 +24,8 @@ FROM mazzolino/docker:20.10.12-dind
LABEL maintainer="Griefed <griefed@griefed.de>"
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 /discord.sh /discord.sh
COPY --from=fetcher /docker-buildx /usr/lib/docker/cli-plugins/docker-buildx
COPY --from=fetcher /discord.sh /discord.sh
ENV DOCKER_CLI_EXPERIMENTAL=enabled
......@@ -33,13 +33,17 @@ RUN \
echo "**** Updating and installing our packages ****" && \
apk update && \
apk upgrade && \
apk add --no-cache \
--repository https://dl-cdn.alpinelinux.org/alpine/v3.17/main/ \
nodejs \
npm && \
apk add --no-cache \
bash \
ca-certificates \
curl \
git \
nodejs-current \
jq \
nodejs \
npm \
openjdk8 && \
echo "node version is: " && \
......@@ -76,5 +80,5 @@ RUN \
echo "**** Cleanup ****" && \
rm -rf \
/var/cache/apk/* \
/tmp/* \
/tmp/*
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base",
"config:base"
],
"labels": ["dependencies"],
"assignees": ["Griefed"]
......