mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-02-14 09:39:56 +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
|