mirror of
https://github.com/solero/houdini.git
synced 2024-11-08 20:28:20 +00:00
Add docker image
This commit is contained in:
parent
4831658b3f
commit
e58f00171c
14
Dockerfile
Normal file
14
Dockerfile
Normal file
@ -0,0 +1,14 @@
|
||||
FROM python:3-alpine
|
||||
|
||||
RUN apk add build-base openssl-dev libffi-dev
|
||||
|
||||
WORKDIR /usr/src/app
|
||||
|
||||
COPY requirements.txt ./
|
||||
RUN pip install --no-cache-dir -r requirements.txt
|
||||
|
||||
COPY . .
|
||||
|
||||
ENV server "login"
|
||||
|
||||
CMD ["sh", "-c", "python ./bootstrap.py ${server}"]
|
Loading…
Reference in New Issue
Block a user