annotate Dockerfile @ 42:530650b3bc40 default tip

something changed in pom to break pyjwt. switched to jwskate
author drewp@bigasterisk.com
date Wed, 14 Dec 2022 22:07:19 -0800
parents 7ed47f59f22a
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
33
b82432594778 skaffold config and other updates
drewp@bigasterisk.com
parents: 30
diff changeset
1 FROM bang5:5000/base_basic
29
890584020372 new container setup
drewp@bigasterisk.com
parents:
diff changeset
2
890584020372 new container setup
drewp@bigasterisk.com
parents:
diff changeset
3 WORKDIR /opt
890584020372 new container setup
drewp@bigasterisk.com
parents:
diff changeset
4
36
7ed47f59f22a use pdm
drewp@bigasterisk.com
parents: 33
diff changeset
5 COPY pyproject.toml pdm.lock ./
29
890584020372 new container setup
drewp@bigasterisk.com
parents:
diff changeset
6
36
7ed47f59f22a use pdm
drewp@bigasterisk.com
parents: 33
diff changeset
7 RUN pdm install
29
890584020372 new container setup
drewp@bigasterisk.com
parents:
diff changeset
8
33
b82432594778 skaffold config and other updates
drewp@bigasterisk.com
parents: 30
diff changeset
9 COPY *.py ./
29
890584020372 new container setup
drewp@bigasterisk.com
parents:
diff changeset
10 COPY static static/
890584020372 new container setup
drewp@bigasterisk.com
parents:
diff changeset
11 COPY template template/
890584020372 new container setup
drewp@bigasterisk.com
parents:
diff changeset
12
890584020372 new container setup
drewp@bigasterisk.com
parents:
diff changeset
13
36
7ed47f59f22a use pdm
drewp@bigasterisk.com
parents: 33
diff changeset
14 CMD [ "pdm", "run", "python", "lookup.py" ]