mirror of https://github.com/jumpserver/jumpserver
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
336 B
9 lines
336 B
8 years ago
|
FROM alpine:3.4
|
||
|
MAINTAINER Jumpserver Team <ibuler@qq.com>
|
||
|
|
||
|
RUN apk add --update python gcc python-dev py-pip musl-dev linux-headers \
|
||
|
libffi-dev openssl-dev jpeg-dev freetype-dev redis && rm -rf /var/cache/apk/*
|
||
|
COPY ./requirements.txt /tmp
|
||
|
WORKDIR /tmp
|
||
|
|
||
|
RUN pip install -r requirements.txt -i https://pypi.doubanio.com/simple
|