Skip to content
Snippets Groups Projects
Commit 258ea1b5 authored by PICHOU Kyâne's avatar PICHOU Kyâne
Browse files

Add a django image for picasoft webstatus page

parent 9c1920ae
No related branches found
No related tags found
No related merge requests found
FROM python:3.6
MAINTAINER kyane@kyane.fr
ENV PYTHONUNBUFFERED 1
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
gcc \
gettext \
libssl-dev \
libsasl2-dev \
&& rm -rf /var/lib/apt/lists/*
RUN pip install --upgrade pip
RUN mkdir /code
WORKDIR /code
ADD requirements.txt /code/
RUN pip install -r requirements.txt
ADD . /code/
EXPOSE 8000
Django==1.11
mongoengine>=0.12.0
requests
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment