annotate Dockerfile @ 1:1275220a644b

pipenv
author drewp@bigasterisk.com
date Tue, 29 Mar 2022 22:02:25 -0700
parents e2d855c00e57
children fd73907cef40
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
e2d855c00e57 initial move from homeauto/ repo
drewp@bigasterisk.com
parents:
diff changeset
1 FROM bang5:5000/base_basic
e2d855c00e57 initial move from homeauto/ repo
drewp@bigasterisk.com
parents:
diff changeset
2
e2d855c00e57 initial move from homeauto/ repo
drewp@bigasterisk.com
parents:
diff changeset
3 WORKDIR /opt
e2d855c00e57 initial move from homeauto/ repo
drewp@bigasterisk.com
parents:
diff changeset
4
e2d855c00e57 initial move from homeauto/ repo
drewp@bigasterisk.com
parents:
diff changeset
5 RUN echo 2021-08-26 && apt-get update
1
drewp@bigasterisk.com
parents: 0
diff changeset
6 RUN apt-get install -y vim net-tools iputils-ping git pipenv
0
e2d855c00e57 initial move from homeauto/ repo
drewp@bigasterisk.com
parents:
diff changeset
7
1
drewp@bigasterisk.com
parents: 0
diff changeset
8 COPY Pipfile Pipfile.lock ./
drewp@bigasterisk.com
parents: 0
diff changeset
9 RUN pipenv install
0
e2d855c00e57 initial move from homeauto/ repo
drewp@bigasterisk.com
parents:
diff changeset
10
1
drewp@bigasterisk.com
parents: 0
diff changeset
11 COPY *.py *.html ./
0
e2d855c00e57 initial move from homeauto/ repo
drewp@bigasterisk.com
parents:
diff changeset
12
e2d855c00e57 initial move from homeauto/ repo
drewp@bigasterisk.com
parents:
diff changeset
13 EXPOSE 9072
e2d855c00e57 initial move from homeauto/ repo
drewp@bigasterisk.com
parents:
diff changeset
14