Initial commit
continuous-integration/drone Build is passing Details

This commit is contained in:
Lauri Võsandi 2022-05-03 07:48:04 +03:00
commit 97a89aab75
3 changed files with 15 additions and 0 deletions

2
.drone.yml Normal file
View File

@ -0,0 +1,2 @@
kind: template
load: docker.yaml

10
Dockerfile Normal file
View File

@ -0,0 +1,10 @@
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>"

3
README.md Normal file
View File

@ -0,0 +1,3 @@
# Background
This is base Docker image for Sanic based microservices