2024-05-08 16:20:31 +08:00
|
|
|
FROM git.daoyoucloud.com/tachybase/base:latest as base
|
|
|
|
|
2024-07-19 11:50:30 +08:00
|
|
|
ARG NPM_REGISTRY=https://registry.npmjs.org
|
2024-05-08 16:20:31 +08:00
|
|
|
ENV PNPM_HOME="/pnpm"
|
|
|
|
ENV PATH="$PNPM_HOME:$PATH"
|
|
|
|
|
|
|
|
# make cache
|
|
|
|
COPY . /app
|
|
|
|
WORKDIR /app
|
2024-07-19 11:50:30 +08:00
|
|
|
RUN npm config set registry $NPM_REGISTRY
|
|
|
|
RUN npm i -g pnpm@8.15.5
|
2024-05-08 16:20:31 +08:00
|
|
|
RUN pnpm config set registry $NPM_REGISTRY
|
|
|
|
RUN pnpm install --shamefully-hoist
|
|
|
|
RUN pnpm build:p
|
|
|
|
|
|
|
|
COPY ./docker/tachybase/docker-entrypoint.sh /app/
|
|
|
|
CMD ["/app/docker-entrypoint.sh"]
|