rename dockerfiles
This commit is contained in:
parent
5d9334fb75
commit
2fb540d34a
5 changed files with 0 additions and 0 deletions
17
Dockerfile.amd64
Normal file
17
Dockerfile.amd64
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
FROM amd64/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