Files
container.training/slides/Dockerfile
2019-03-01 19:43:53 -06:00

8 lines
139 B
Docker

FROM alpine
RUN apk update
RUN apk add entr
RUN apk add py-pip
RUN apk add git
COPY requirements.txt .
RUN pip install -r requirements.txt