mirror of
https://gitee.com/nocobase/nocobase.git
synced 2024-11-30 03:08:31 +08:00
65 lines
2.1 KiB
Docker
65 lines
2.1 KiB
Docker
FROM node:20.13-bullseye as builder
|
|
ARG VERDACCIO_URL=http://host.docker.internal:10104/
|
|
ARG COMMIT_HASH
|
|
ARG APPEND_PRESET_LOCAL_PLUGINS
|
|
ARG BEFORE_PACK_NOCOBASE="ls -l"
|
|
ARG PLUGINS_DIRS
|
|
|
|
ENV PLUGINS_DIRS=${PLUGINS_DIRS}
|
|
ENV COMMIT_HASH=${COMMIT_HASH}
|
|
|
|
RUN npx npm-cli-adduser --username test --password test -e test@nocobase.com -r $VERDACCIO_URL
|
|
|
|
RUN apt-get update && apt-get install -y jq
|
|
WORKDIR /tmp
|
|
COPY . /tmp
|
|
RUN yarn install && yarn build --no-dts
|
|
|
|
SHELL ["/bin/bash", "-c"]
|
|
|
|
RUN CURRENTVERSION="$(jq -r '.version' lerna.json)" && \
|
|
IFS='.-' read -r major minor patch label <<< "$CURRENTVERSION" && \
|
|
if [ -z "$label" ]; then CURRENTVERSION="$CURRENTVERSION-rc"; fi && \
|
|
cd /tmp && \
|
|
NEWVERSION="$(echo $CURRENTVERSION).$(date +'%Y%m%d%H%M%S')" \
|
|
&& git checkout -b release-$(date +'%Y%m%d%H%M%S') \
|
|
&& yarn lerna version ${NEWVERSION} -y --no-git-tag-version
|
|
|
|
RUN git config user.email "test@mail.com" \
|
|
&& git config user.name "test" && git add . \
|
|
&& git commit -m "chore(versions): test publish packages"
|
|
RUN yarn release:force --registry $VERDACCIO_URL
|
|
|
|
RUN yarn config set registry $VERDACCIO_URL
|
|
WORKDIR /app
|
|
RUN cd /app \
|
|
&& yarn config set network-timeout 600000 -g \
|
|
&& yarn create nocobase-app my-nocobase-app -a -e APP_ENV=production -e APPEND_PRESET_LOCAL_PLUGINS=$APPEND_PRESET_LOCAL_PLUGINS \
|
|
&& cd /app/my-nocobase-app \
|
|
&& yarn install --production
|
|
|
|
WORKDIR /app/my-nocobase-app
|
|
RUN $BEFORE_PACK_NOCOBASE
|
|
|
|
RUN cd /app \
|
|
&& rm -rf my-nocobase-app/packages/app/client/src/.umi \
|
|
&& rm -rf nocobase.tar.gz \
|
|
&& tar -zcf ./nocobase.tar.gz -C /app/my-nocobase-app .
|
|
|
|
RUN echo "${COMMIT_HASH}" > /tmp/commit_hash.txt
|
|
|
|
|
|
FROM node:20.13-bullseye-slim
|
|
RUN apt-get update && apt-get install -y nginx libaio1
|
|
RUN rm -rf /etc/nginx/sites-enabled/default
|
|
|
|
COPY ./docker/nocobase/nocobase.conf /etc/nginx/sites-enabled/nocobase.conf
|
|
COPY --from=builder /app/nocobase.tar.gz /app/nocobase.tar.gz
|
|
COPY --from=builder /tmp/commit_hash.txt /app/commit_hash.txt
|
|
|
|
WORKDIR /app/nocobase
|
|
|
|
COPY ./docker/nocobase/docker-entrypoint.sh /app/
|
|
|
|
CMD ["/app/docker-entrypoint.sh"]
|