2018-11-04 02:07:00 +00:00
|
|
|
# ====================
|
|
|
|
# --- Build Assets ---
|
|
|
|
# ====================
|
2019-01-18 20:58:39 +00:00
|
|
|
FROM node:10.15-alpine AS assets
|
2018-11-04 02:07:00 +00:00
|
|
|
|
|
|
|
RUN apk update && \
|
|
|
|
apk add yarn g++ make python --no-cache && \
|
2019-01-19 07:25:35 +00:00
|
|
|
rm -rf /var/cache/apk/*
|
2018-11-04 02:07:00 +00:00
|
|
|
|
2019-01-18 20:58:39 +00:00
|
|
|
WORKDIR /wiki
|
2018-11-04 02:07:00 +00:00
|
|
|
|
2018-11-04 02:15:49 +00:00
|
|
|
COPY ./client ./client
|
2018-11-04 02:22:44 +00:00
|
|
|
COPY ./dev ./dev
|
|
|
|
COPY ./package.json ./package.json
|
|
|
|
COPY ./.babelrc ./.babelrc
|
|
|
|
COPY ./.eslintignore ./.eslintignore
|
|
|
|
COPY ./.eslintrc.yml ./.eslintrc.yml
|
2018-11-04 02:07:00 +00:00
|
|
|
|
2019-02-02 19:05:24 +00:00
|
|
|
RUN yarn cache clean
|
|
|
|
RUN yarn --frozen-lockfile --non-interactive
|
2018-11-04 02:07:00 +00:00
|
|
|
RUN yarn build
|
2019-01-18 20:58:39 +00:00
|
|
|
RUN rm -rf /wiki/node_modules
|
2019-02-02 19:05:24 +00:00
|
|
|
RUN yarn --production --frozen-lockfile --non-interactive
|
2018-11-04 02:07:00 +00:00
|
|
|
|
|
|
|
# ===============
|
|
|
|
# --- Release ---
|
|
|
|
# ===============
|
2019-01-18 20:58:39 +00:00
|
|
|
FROM node:10.15-alpine
|
2017-10-15 03:56:51 +00:00
|
|
|
LABEL maintainer="requarks.io"
|
|
|
|
|
|
|
|
RUN apk update && \
|
2019-02-10 00:10:34 +00:00
|
|
|
apk add bash curl git openssh gnupg sqlite --no-cache && \
|
2018-11-04 02:07:00 +00:00
|
|
|
rm -rf /var/cache/apk/* && \
|
2019-01-18 20:58:39 +00:00
|
|
|
mkdir -p /wiki && \
|
2018-11-04 18:14:09 +00:00
|
|
|
mkdir -p /logs
|
2017-10-15 03:56:51 +00:00
|
|
|
|
2019-01-18 20:58:39 +00:00
|
|
|
WORKDIR /wiki
|
2017-10-15 03:56:51 +00:00
|
|
|
|
2019-01-18 20:58:39 +00:00
|
|
|
COPY --from=assets /wiki/assets ./assets
|
|
|
|
COPY --from=assets /wiki/node_modules ./node_modules
|
2018-11-04 02:15:49 +00:00
|
|
|
COPY ./server ./server
|
2019-01-18 20:58:39 +00:00
|
|
|
COPY --from=assets /wiki/server/views ./server/views
|
2018-11-04 17:55:21 +00:00
|
|
|
COPY ./dev/build/config.yml ./config.yml
|
2018-12-09 01:51:55 +00:00
|
|
|
COPY ./dev/docker/wait.sh ./wait.sh
|
2018-11-04 02:15:49 +00:00
|
|
|
COPY ./package.json ./package.json
|
|
|
|
COPY ./LICENSE ./LICENSE
|
2017-10-15 03:56:51 +00:00
|
|
|
|
|
|
|
EXPOSE 3000
|
|
|
|
|
2019-01-18 20:58:39 +00:00
|
|
|
CMD ["node", "server"]
|