* Add arm64 docker image build * add arm64 docker image build * fix: install missing docker buildx * fix: new cimg orbs not working with this config * fix misstake on qemu image name * fix node:16 image not supported on arm/v5 and arm/v6 * add timeout to avoir errors * fix docker buildx multiarch auto removing * remove useless platforms, and keep only most used to reduce CI duration * fix context issues * fixed multiarch CI
29 lines
650 B
Docker
29 lines
650 B
Docker
ARG APP_PATH=/opt/outline
|
|
FROM outlinewiki/outline-base as base
|
|
|
|
ARG APP_PATH
|
|
WORKDIR $APP_PATH
|
|
|
|
# ---
|
|
FROM node:16.14.2-alpine3.15 AS runner
|
|
|
|
ARG APP_PATH
|
|
WORKDIR $APP_PATH
|
|
ENV NODE_ENV production
|
|
|
|
COPY --from=base $APP_PATH/build ./build
|
|
COPY --from=base $APP_PATH/server ./server
|
|
COPY --from=base $APP_PATH/public ./public
|
|
COPY --from=base $APP_PATH/.sequelizerc ./.sequelizerc
|
|
COPY --from=base $APP_PATH/node_modules ./node_modules
|
|
COPY --from=base $APP_PATH/package.json ./package.json
|
|
|
|
RUN addgroup -g 1001 -S nodejs && \
|
|
adduser -S nodejs -u 1001 && \
|
|
chown -R nodejs:nodejs $APP_PATH/build
|
|
|
|
USER nodejs
|
|
|
|
EXPOSE 3000
|
|
CMD ["yarn", "start"]
|