You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
392 B
10 lines
392 B
FROM python:alpine AS build |
|
RUN apk add --no-cache gcc make musl-dev linux-headers \ |
|
&& pip3 wheel --wheel-dir=/wheels motor sanic sanic_prometheus |
|
|
|
FROM python:alpine |
|
COPY --from=build /wheels /wheels |
|
RUN pip3 install --no-index --find-links /wheels/*.whl && rm -Rfv /wheels |
|
LABEL name="k-space/microservice-base" \ |
|
version="rc" \ |
|
maintainer="Lauri Võsandi <lauri@k-space.ee>"
|
|
|