annotate Dockerfile @ 29:35affd4d37d4 default tip

add 1st ikea color light
author drewp@bigasterisk.com
date Sat, 14 Dec 2024 22:36:29 -0800
parents 5a77696c6dab
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 ./