annotate Dockerfile @ 0:5a77696c6dab

start
author drewp@bigasterisk.com
date Sun, 28 Jan 2024 15:32:18 -0800
parents
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 ./