annotate Dockerfile @ 13:3014db0a5500 default tip

mv board to proj/micro, rename this repo with dashes
author drewp@bigasterisk.com
date Fri, 28 Jun 2024 17:08:09 -0700
parents 4365c72c59f6
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
drewp@bigasterisk.com
parents:
diff changeset
1 FROM reg:5000/base_basic
drewp@bigasterisk.com
parents:
diff changeset
2
drewp@bigasterisk.com
parents:
diff changeset
3 WORKDIR /opt
drewp@bigasterisk.com
parents:
diff changeset
4
drewp@bigasterisk.com
parents:
diff changeset
5 COPY package.json pnpm-lock.yaml ./
drewp@bigasterisk.com
parents:
diff changeset
6 RUN pnpm install
drewp@bigasterisk.com
parents:
diff changeset
7
drewp@bigasterisk.com
parents:
diff changeset
8 COPY pyproject.toml pdm.lock ./
drewp@bigasterisk.com
parents:
diff changeset
9 RUN pdm install
drewp@bigasterisk.com
parents:
diff changeset
10
drewp@bigasterisk.com
parents:
diff changeset
11 COPY vite.config.ts tsconfig.json ./
drewp@bigasterisk.com
parents:
diff changeset
12 COPY src/ ./src/
drewp@bigasterisk.com
parents:
diff changeset
13 COPY *.py ./