|
|
|
@ -1,12 +1,13 @@ |
|
|
|
|
FROM python:alpine AS build |
|
|
|
|
RUN apk add --no-cache gcc make musl-dev linux-headers git \ |
|
|
|
|
&& pip3 wheel --wheel-dir=/wheels \ |
|
|
|
|
git+https://github.com/Assarius/sanic-prometheus@Sanic_22 \ |
|
|
|
|
kubernetes_asyncio \ |
|
|
|
|
motor \ |
|
|
|
|
pyjwt \ |
|
|
|
|
sanic \ |
|
|
|
|
pyyaml \ |
|
|
|
|
kubernetes_asyncio \ |
|
|
|
|
git+https://github.com/Assarius/sanic-prometheus@Sanic_22 |
|
|
|
|
sanic \ |
|
|
|
|
velebit-useful-logs |
|
|
|
|
FROM python:alpine |
|
|
|
|
COPY --from=build /wheels /wheels |
|
|
|
|
RUN pip3 install --no-index --find-links /wheels/*.whl && rm -Rfv /wheels |
|
|
|
|