annotate Dockerfile @ 14:e3dbd04dab96

add mqtt; talk to first light (no throttling)
author drewp@bigasterisk.com
date Sun, 28 Jan 2024 20:49:42 -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 ./