mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-03-03 01:40:19 +00:00
8 lines
139 B
Docker
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
|