add manifest
This commit is contained in:
parent
4f820ebce8
commit
5d9334fb75
2 changed files with 21 additions and 0 deletions
17
old_dockerfile
Normal file
17
old_dockerfile
Normal 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"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue