36 lines
1.6 KiB
Docker
36 lines
1.6 KiB
Docker
FROM node:20-alpine AS builder
|
|
USER root
|
|
RUN http_proxy=http://172.17.0.1:8888 https_proxy=http://172.17.0.1:8888 apk add --no-cache openssl || apk add --no-cache openssl || true
|
|
WORKDIR /app
|
|
ENV PRISMA_SKIP_POSTINSTALL_GENERATE=true
|
|
ENV PRISMA_ENGINES_MIRROR=https://registry.npmmirror.com/-/binary/prisma
|
|
|
|
# Optional: Use Nexus as npm registry (pass --build-arg NPM_REGISTRY=http://nexus:8081/repository/npm/)
|
|
ARG NPM_REGISTRY=
|
|
RUN if [ -n "$NPM_REGISTRY" ]; then \
|
|
npm config set registry "$NPM_REGISTRY" && \
|
|
npm config set strict-ssl false && \
|
|
echo "Using npm registry: $NPM_REGISTRY"; \
|
|
fi
|
|
|
|
COPY package*.json ./
|
|
RUN npm ci --prefer-offline --no-audit
|
|
COPY . .
|
|
RUN rm -rf dist && ./node_modules/.bin/prisma generate && npm run build
|
|
|
|
FROM node:20-alpine
|
|
USER root
|
|
RUN http_proxy=http://172.17.0.1:8888 https_proxy=http://172.17.0.1:8888 apk add --no-cache openssl || apk add --no-cache openssl || true
|
|
RUN mkdir -p /app/uploads && chown node:node /app/uploads
|
|
WORKDIR /app
|
|
COPY --chown=node:node --from=builder /app/package*.json ./
|
|
COPY --chown=node:node --from=builder /app/tsconfig.json ./tsconfig.json
|
|
COPY --chown=node:node --from=builder /app/node_modules ./node_modules
|
|
COPY --chown=node:node --from=builder /app/dist ./dist
|
|
COPY --chown=node:node --from=builder /app/prisma ./prisma
|
|
COPY --chown=node:node --from=builder /app/prisma/tsconfig.seed.json ./prisma/tsconfig.seed.json
|
|
COPY --chown=node:node --from=builder /app/prisma/scientificTerms.ts ./prisma/scientificTerms.ts
|
|
EXPOSE 3000
|
|
USER node
|
|
CMD ["sh", "-c", "npx prisma migrate deploy && if [ -f dist/src/main.js ]; then node dist/src/main.js; else node dist/main.js; fi"]
|