10 lines
200 B
Docker
10 lines
200 B
Docker
FROM alpine:3.6
|
|
|
|
ADD ./docker /walle-react
|
|
WORKDIR /walle-react
|
|
|
|
RUN apk add --no-cache --update python py-pip py-lxml \
|
|
&& pip install -r requirements.txt
|
|
|
|
CMD gunicorn --bind 0.0.0.0:$PORT wsgi
|