mirror of
https://gitee.com/nocobase/nocobase.git
synced 2025-05-04 21:19:27 +08:00
* feat: environments plugin * feat: improve code * fix: improve code * feat: improve code * refactor: package description * feat: bulk import * fix: remove * refactor: file manager support environment variables * refactor: file manager support environment variables * refactor: map manager support environment variables * refactor: support environment variables * refactor: support environment variables * refactor: support delete environment variables * fix: bug * refactor: workflow support environment variables * refactor: email environment variables * refactor: support bulk import * refactor: support bulk import * refactor: support bulk import * refactor: support bulk import * refactor: code improve * feat: env * chore: update * feat: environment * fix: bug * fix: acl snippet * fix: acl snippets * chore: map manager * refactor: support line break * refactor: support password * chore: environment variables * fix: bug * fix: bug * chore: enviroment variables * chore: system settings * fix: improve code * feat: verification * feat: map * feat: file-manager * feat: notification * fix: bug * feat: workflow * fix: improve code * fix: bug * feat: data-source * feat: auth * fix: error * fix: bug * refactor: description * refactor: locale * refactor: locale * refactor: locale * refactor: code improve * refactor: locale * refactor: locale * style: style improve * fix: error * fix: bug * fix: bug * refactor: environment * fix: ellipsis * refactor: password * fix: bug * fix: bug * fix: bug * fix: bug * fix: bug * chore: test * fix: cache * fix: mysql dialect options * refactor: email config form * fix: bug * fix: bug * fix: authenticator.dataValues parse * fix: include undefined * fix: json * fix: json parse * chore: enviromentProvider * fix: acl * fix: rowKey * fix: update ProviderOptions.tsx * feat: get app instance * fix: bug * fix: text * fix: build error * fix: error * chore: migration rules options * chore: migration rules * refactor: code improve * feat: env v2 * chore: environment varibales * chore: environment serve * fix: getVariables * feat: improve code * fix: bug * chore: collection options for migration * chore: tree collection options * chore: migration rules * chore: migration rules * chore: env api * chore: env api * fix: optionsKeysNotAllowedInEnv * fix: required true * fix: improve code * fix: app refresh * fix: remove db.import * fix: type error * fix: map * refactor: locale improve * refactor: tx-cos * fix: undefined * refactor: code improve * chore: use bookworm * fix: npm add user * fix: npm login * fix: npm adduser * fix: npm adduser * fix: expect * fix: expect * fix: environmentVariables * refactor: support bulk delete & filter * refactor: locale improve * feat: filter * refactor: useGlobalVariable * fix: scope * fix: bug * fix: optionsKeysNotAllowedInEnv * fix: test error * fix: test * fix: test * feat: improve code --------- Co-authored-by: chenos <chenlinxh@gmail.com> Co-authored-by: Chareice <chareice@live.com>
79 lines
2.6 KiB
Docker
79 lines
2.6 KiB
Docker
FROM node:20-bookworm 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}
|
|
|
|
RUN apt-get update && apt-get install -y jq expect
|
|
|
|
RUN expect <<EOD
|
|
spawn npm adduser --registry $VERDACCIO_URL
|
|
expect {
|
|
"Username:" {send "test\r"; exp_continue}
|
|
"Password:" {send "test\r"; exp_continue}
|
|
"Email: (this IS public)" {send "test@nocobase.com\r"; exp_continue}
|
|
}
|
|
EOD
|
|
|
|
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 .
|
|
|
|
|
|
FROM node:20-bookworm-slim
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends wget gnupg \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN sh -c 'echo "deb http://mirrors.ustc.edu.cn/postgresql/repos/apt bookworm-pgdg main" > /etc/apt/sources.list.d/pgdg.list'
|
|
RUN wget --quiet -O - http://mirrors.ustc.edu.cn/postgresql/repos/apt/ACCC4CF8.asc | apt-key add -
|
|
|
|
RUN apt-get update && apt-get -y --no-install-recommends install nginx libaio1 postgresql-client-16 postgresql-client-17 \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
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
|
|
|
|
WORKDIR /app/nocobase
|
|
|
|
RUN mkdir -p /app/nocobase/storage/uploads/ && echo "$COMMIT_HASH" >> /app/nocobase/storage/uploads/COMMIT_HASH
|
|
|
|
COPY ./docker/nocobase/docker-entrypoint.sh /app/
|
|
|
|
CMD ["/app/docker-entrypoint.sh"]
|