/[sudobot]/trunk/Dockerfile
ViewVC logotype

Annotation of /trunk/Dockerfile

Parent Directory Parent Directory | Revision Log Revision Log


Revision 572 - (hide annotations)
Mon Jul 29 17:51:37 2024 UTC (8 months, 1 week ago) by rakinar2
File size: 937 byte(s)
chore: push code for v9
1 rakinar2 572 FROM node:22-bookworm
2 rakin 357
3 rakin 355 WORKDIR /app
4 rakin 357
5 rakinar2 572 RUN apt-get update
6     RUN apt-get install git build-essential librsvg2-dev libgif-dev giflib-tools libcurl4 libcurl4-gnutls-dev libgtk-3-dev libpango1.0-dev libpng-dev libpng++-dev libpng-tools libjpeg-tools libjpeg-progs libjpeg-dev -y
7 rakin 365
8 rakinar2 572 COPY package.json ./package.json
9     COPY tsconfig.json ./tsconfig.json
10 rakin 358 COPY src ./src
11 rakinar2 572 COPY blazew ./blazew
12     COPY blaze ./blaze
13     COPY blazebuild ./blazebuild
14     COPY build.blaze.ts ./build.blaze.ts
15     COPY build_src ./build_src
16     COPY eslint.config.mjs ./eslint.config.mjs
17     COPY vitest.config.mjs ./vitest.config.mjs
18     COPY tests ./tests
19 rakin 357
20 rakinar2 572 RUN ./blazew build
21 rakin 357
22 rakinar2 572 FROM node:22-alpine
23 rakin 357
24 rakinar2 572 WORKDIR /app
25    
26     COPY --from=0 /app/node_modules ./node_modules
27     COPY --from=0 /app/build ./build
28     COPY --from=0 /app/package.json ./package.json
29     COPY ecosystem.config.js ./ecosystem.config.js
30     COPY .env.docke[r] ./.env
31     COPY config ./config
32    
33 rakin 357 EXPOSE 4000
34 rakinar2 572 CMD ["npm", "run", "start:prod", "--", "--no-daemon"]

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26