1
0
mirror of https://github.com/Mailu/Mailu.git synced 2025-04-25 12:15:02 +02:00

16 lines
258 B
Docker
Raw Normal View History

FROM python:3
RUN mkdir -p /app
WORKDIR /app
COPY mailu ./mailu
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
RUN pybabel compile -d mailu/translations
2016-06-25 14:11:34 +02:00
CMD ["/start.sh"]