rename dockerfiles

This commit is contained in:
Brian Martin 2019-12-31 14:47:51 -05:00
parent 5d9334fb75
commit 2fb540d34a
5 changed files with 0 additions and 0 deletions

17
Dockerfile Normal file
View file

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