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