view Dockerfile @ 1:1275220a644b

pipenv
author drewp@bigasterisk.com
date Tue, 29 Mar 2022 22:02:25 -0700
parents e2d855c00e57
children fd73907cef40
line wrap: on
line source

FROM bang5:5000/base_basic

WORKDIR /opt

RUN echo 2021-08-26 && apt-get update
RUN apt-get install -y vim net-tools iputils-ping git pipenv

COPY Pipfile Pipfile.lock ./
RUN pipenv install

COPY *.py *.html ./

EXPOSE 9072