1
0
mirror of https://github.com/Mailu/Mailu.git synced 2025-02-21 19:19:39 +02:00
Mailu/admin/Dockerfile

15 lines
224 B
Docker
Raw Normal View History

FROM python:3
RUN mkdir -p /app
WORKDIR /app
COPY freeposte ./freeposte
COPY migrations ./migrations
2016-06-25 14:11:34 +02:00
COPY manage.py .
COPY requirements.txt .
2016-06-25 14:11:34 +02:00
COPY start.sh /start.sh
RUN pip install -r requirements.txt
2016-06-25 14:11:34 +02:00
CMD ["/start.sh"]