Skip to content
Snippets Groups Projects

chore(deps): update dependency remark-cli to v12.0.1 - abandoned

Open Botaniker (Bot) requested to merge renovate/remark into deploy
1 file
+ 8
8
Compare changes
  • Side-by-side
  • Inline
+ 8
8
@@ -54,18 +54,10 @@ builder:
build-frontend:
FROM +builder
DO +COPY_SRC
# git hash switcheroo with earthly built-in args
ARG EARTHLY_GIT_HASH
RUN mkdir -p /hedgedoc/.git
RUN echo "${EARTHLY_GIT_HASH}" > /hedgedoc/.git/HEAD
RUN jq ".repository.url = \"https://git.shivering-isles.com/shivering-isles/pad/-/tree/${EARTHLY_GIT_HASH}\"" /hedgedoc/package.json > /hedgedoc/package.new.json
RUN mv /hedgedoc/package.new.json /hedgedoc/package.json
ENV NODE_ENV=production
RUN yarn run build
RUN rm -f /hedgedoc/config.json
RUN ln -s /files/config.json /hedgedoc/config.json
SAVE IMAGE --cache-hint
SAVE ARTIFACT --symlink-no-follow /hedgedoc
@@ -74,8 +66,16 @@ build-backend:
ENV NODE_ENV=production
DO +COPY_SRC
WORKDIR /hedgedoc
# git hash switcheroo with earthly built-in args
ARG EARTHLY_GIT_HASH
RUN mkdir -p /hedgedoc/.git
RUN echo "${EARTHLY_GIT_HASH}" > /hedgedoc/.git/HEAD
RUN jq ".repository.url = \"https://git.shivering-isles.com/shivering-isles/pad/-/tree/${EARTHLY_GIT_HASH}\"" /hedgedoc/package.json > /hedgedoc/package.new.json
RUN mv /hedgedoc/package.new.json /hedgedoc/package.json
RUN mkdir -p /files/
RUN echo "{}" > /files/config.json
RUN rm -f /hedgedoc/config.json
RUN ln -s /files/config.json /hedgedoc/config.json
SAVE IMAGE --cache-hint
SAVE ARTIFACT --symlink-no-follow /hedgedoc
SAVE ARTIFACT --symlink-no-follow /files
Loading