annotate Dockerfile.web @ 13:403eff4a16c8

fix up indexer flow and fastapi server
author drewp@bigasterisk.com
date Thu, 11 Jul 2024 21:32:24 -0700
parents 6622bacb0b84
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7
53ae53f7d1b3 add k8s config
drewp@bigasterisk.com
parents:
diff changeset
1 FROM reg:5000/base_basic
53ae53f7d1b3 add k8s config
drewp@bigasterisk.com
parents:
diff changeset
2
53ae53f7d1b3 add k8s config
drewp@bigasterisk.com
parents:
diff changeset
3 WORKDIR /opt
53ae53f7d1b3 add k8s config
drewp@bigasterisk.com
parents:
diff changeset
4
53ae53f7d1b3 add k8s config
drewp@bigasterisk.com
parents:
diff changeset
5 COPY web/package.json web/pnpm-lock.yaml ./
11
6622bacb0b84 first pass at reorg
drewp@bigasterisk.com
parents: 7
diff changeset
6 RUN cd web; pnpm install
7
53ae53f7d1b3 add k8s config
drewp@bigasterisk.com
parents:
diff changeset
7
53ae53f7d1b3 add k8s config
drewp@bigasterisk.com
parents:
diff changeset
8 COPY web/vite.config.ts web/tsconfig.json ./
53ae53f7d1b3 add k8s config
drewp@bigasterisk.com
parents:
diff changeset
9 COPY web/src/ ./src/