From a1c3d6339c8abc261af1047a530ec38cc6df32cc Mon Sep 17 00:00:00 2001 From: Nicolas Giard Date: Sat, 19 Jan 2019 02:25:35 -0500 Subject: [PATCH] misc: remove publishing docker build step --- dev/build/Dockerfile | 34 +--------------------------------- 1 file changed, 1 insertion(+), 33 deletions(-) diff --git a/dev/build/Dockerfile b/dev/build/Dockerfile index b121263b..c6f6bf5a 100644 --- a/dev/build/Dockerfile +++ b/dev/build/Dockerfile @@ -5,8 +5,7 @@ FROM node:10.15-alpine AS assets RUN apk update && \ apk add yarn g++ make python --no-cache && \ - rm -rf /var/cache/apk/* && \ - mkdir -p /wiki + rm -rf /var/cache/apk/* WORKDIR /wiki @@ -22,37 +21,6 @@ RUN yarn build RUN rm -rf /wiki/node_modules RUN yarn --production -# ========================= -# --- Publish to GitHub --- -# ========================= - -FROM alpine AS publishing - -RUN apk --update add git jq openssh hub tar && \ - rm -rf /var/cache/apk/* - -WORKDIR /wiki - -COPY --from=assets /wiki/assets ./assets -COPY --from=assets /wiki/node_modules ./node_modules -COPY ./server ./server -COPY --from=assets /wiki/server/views ./server/views -COPY ./config.sample.yml ./config.sample.yml -COPY ./package.json ./package.json -COPY ./LICENSE ./LICENSE - -RUN BUILDNUM=$(jq -r '.version' package.json) - -WORKDIR / - -RUN tar -czf wiki-js.tar.gz /wiki -RUN mv wiki-js.tar.gz /wiki - -WORKDIR /wiki - -RUN hub init -g "Requarks/wiki" -RUN hub create -p -a wiki-js.tar.gz -m "See [CHANGELOG](https://github.com/Requarks/wiki/blob/master/CHANGELOG.md) for release notes" -t $CF_REVISION $BUILDNUM - # =============== # --- Release --- # ===============