mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-03-03 01:40:19 +00:00
5 lines
122 B
Docker
5 lines
122 B
Docker
FROM alpine:3.11
|
|
RUN apk add --no-cache entr py3-pip git zip
|
|
COPY requirements.txt .
|
|
RUN pip3 install -r requirements.txt
|