更换 docker 环境

This commit is contained in:
virusdefender 2015-08-02 11:47:32 +08:00
parent d2c19e91d4
commit a039ff333d

View File

@ -1,4 +1,8 @@
FROM python:2.7
FROM ubuntu
RUN apt-get update
RUN apt-get -y install software-properties-common python-software-properties
RUN apt-get -y install python
RUN apt-get -y install python-pip
ENV PYTHONUNBUFFERED 1
ENV oj_env daocloud
RUN mkdir /var/oj
@ -7,3 +11,4 @@ WORKDIR /var/oj/
RUN pip install -r requirements.txt
EXPOSE 8080
RUN mkdir LOG
CMD python manage.py runserver 8080