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

fix: Remove unnecessary argument

parent 7fa6e0be
No related branches found
No related tags found
No related merge requests found
......@@ -21,7 +21,7 @@ COPY --from=fetcher /docker-buildx /usr/lib/docker/cli-plugins/docker-buildx
RUN \
echo "**** Updating and installing our packages ****" && \
apk update && \
apk upgrade -y && \
apk upgrade && \
apk add --no-cache \
bash \
ca-certificates \
......@@ -30,12 +30,6 @@ RUN \
nodejs \
npm \
openjdk8 && \
echo "**** Cleanup ****" && \
rm -rf \
/var/cache/apk/* \
/tmp/*
RUN \
echo "**** Installing GitLab Semantic Release ****" && \
npm install -g \
conventional-changelog-conventionalcommits \
......@@ -47,21 +41,9 @@ RUN \
@semantic-release/gitlab \
@semantic-release/npm \
@semantic-release/release-notes-generator && \
echo "**** Cleanup ****" && \
rm -rf \
/var/cache/apk/* \
/tmp/*
RUN \
echo "**** Making docker-buildx executable for all ****" && \
chmod a+x \
/usr/lib/docker/cli-plugins/docker-buildx && \
echo "**** Cleanup ****" && \
rm -rf \
/var/cache/apk/* \
/tmp/*
RUN \
echo "**** Installing quasar ****" && \
npm install -g \
@quasar/cli && \
......
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