2022-01-05 11:53:04 +00:00
|
|
|
FROM python:3.9.9-alpine
|
|
|
|
|
|
|
|
RUN apk add --no-cache git bash
|
|
|
|
|
|
|
|
WORKDIR /src/
|
|
|
|
|
|
|
|
RUN git clone https://git.autonomic.zone/ruangrupa/lumbunglib /src/
|
|
|
|
|
2022-01-06 15:02:13 +00:00
|
|
|
RUN pip install -U -I setuptools pip
|
2022-01-05 11:53:04 +00:00
|
|
|
|
2022-01-06 15:02:13 +00:00
|
|
|
RUN pip install -I .
|