add manifest

This commit is contained in:
Brian Martin 2019-12-31 14:25:49 -05:00
parent 4f820ebce8
commit 5d9334fb75
2 changed files with 21 additions and 0 deletions

View file

@ -1,17 +0,0 @@
FROM python:3.7-alpine as base
FROM base as builder
# add build utils (gcc, others)
RUN apk add build-base
FROM base
COPY . /bumper
WORKDIR /bumper
# install required python packages
RUN pip3 install -r requirements.txt
ENTRYPOINT ["python3", "-m", "bumper"]