commit
e08f3e81d0
@ -1,24 +1,28 @@
|
|||||||
FROM python:3-alpine
|
FROM alpine:3.8
|
||||||
|
# python3 shared with most images
|
||||||
|
RUN apk add --no-cache \
|
||||||
|
python3 py3-pip \
|
||||||
|
&& pip3 install --upgrade pip
|
||||||
|
# Image specific layers under this line
|
||||||
RUN mkdir -p /app
|
RUN mkdir -p /app
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
COPY requirements-prod.txt requirements.txt
|
COPY requirements-prod.txt requirements.txt
|
||||||
RUN apk add --no-cache openssl curl \
|
RUN apk add --no-cache openssl curl \
|
||||||
&& apk add --no-cache --virtual build-dep openssl-dev libffi-dev python-dev build-base \
|
&& apk add --no-cache --virtual build-dep openssl-dev libffi-dev python3-dev build-base \
|
||||||
&& pip install -r requirements.txt \
|
&& pip3 install -r requirements.txt \
|
||||||
&& apk del --no-cache build-dep
|
&& apk del --no-cache build-dep
|
||||||
|
|
||||||
COPY mailu ./mailu
|
COPY mailu ./mailu
|
||||||
COPY migrations ./migrations
|
COPY migrations ./migrations
|
||||||
COPY manage.py .
|
COPY manage.py .
|
||||||
COPY start.sh /start.sh
|
COPY start.py /start.py
|
||||||
|
|
||||||
RUN pybabel compile -d mailu/translations
|
RUN pybabel compile -d mailu/translations
|
||||||
|
|
||||||
EXPOSE 80/tcp
|
EXPOSE 80/tcp
|
||||||
VOLUME ["/data"]
|
VOLUME ["/data"]
|
||||||
|
|
||||||
CMD ["/start.sh"]
|
CMD /start.py
|
||||||
|
|
||||||
HEALTHCHECK CMD curl -f -L http://localhost/ui || exit 1
|
HEALTHCHECK CMD curl -f -L http://localhost/ui || exit 1
|
||||||
|
@ -0,0 +1,7 @@
|
|||||||
|
#!/usr/bin/python3
|
||||||
|
|
||||||
|
import os
|
||||||
|
|
||||||
|
os.system("python3 manage.py advertise")
|
||||||
|
os.system("python3 manage.py db upgrade")
|
||||||
|
os.system("gunicorn -w 4 -b :80 --access-logfile - --error-logfile - --preload mailu:app")
|
@ -1,5 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
python manage.py advertise
|
|
||||||
python manage.py db upgrade
|
|
||||||
gunicorn -w 4 -b :80 --access-logfile - --error-logfile - --preload mailu:app
|
|
@ -1,14 +1,18 @@
|
|||||||
FROM alpine:3.8
|
FROM alpine:3.8
|
||||||
|
# python3 shared with most images
|
||||||
|
RUN apk add --no-cache \
|
||||||
|
python3 py3-pip \
|
||||||
|
&& pip3 install --upgrade pip
|
||||||
|
# Image specific layers under this line
|
||||||
RUN apk add --no-cache clamav rsyslog wget clamav-libunrar
|
RUN apk add --no-cache clamav rsyslog wget clamav-libunrar
|
||||||
|
|
||||||
COPY conf /etc/clamav
|
COPY conf /etc/clamav
|
||||||
COPY start.sh /start.sh
|
COPY start.py /start.py
|
||||||
COPY health.sh /health.sh
|
COPY health.sh /health.sh
|
||||||
|
|
||||||
EXPOSE 3310/tcp
|
EXPOSE 3310/tcp
|
||||||
VOLUME ["/data"]
|
VOLUME ["/data"]
|
||||||
|
|
||||||
CMD ["/start.sh"]
|
CMD /start.py
|
||||||
|
|
||||||
HEALTHCHECK CMD /health.sh
|
HEALTHCHECK CMD /health.sh
|
||||||
|
@ -0,0 +1,12 @@
|
|||||||
|
#!/usr/bin/python3
|
||||||
|
|
||||||
|
import os
|
||||||
|
|
||||||
|
# Bootstrap the database if clamav is running for the first time
|
||||||
|
os.system("[ -f /data/main.cvd ] || freshclam")
|
||||||
|
|
||||||
|
# Run the update daemon
|
||||||
|
os.system("freshclam -d -c 6")
|
||||||
|
|
||||||
|
# Run clamav
|
||||||
|
os.system("clamd")
|
@ -1,10 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
# Bootstrap the database if clamav is running for the first time
|
|
||||||
[ -f /data/main.cvd ] || freshclam
|
|
||||||
|
|
||||||
# Run the update daemon
|
|
||||||
freshclam -d -c 6
|
|
||||||
|
|
||||||
# Run clamav
|
|
||||||
clamd
|
|
@ -0,0 +1,10 @@
|
|||||||
|
#!/usr/bin/python3
|
||||||
|
|
||||||
|
import os
|
||||||
|
|
||||||
|
# Fix some permissions
|
||||||
|
os.system("mkdir -p /data/gpg")
|
||||||
|
os.system("chown -R www-data:www-data /data")
|
||||||
|
|
||||||
|
# Run apache
|
||||||
|
os.execv("/usr/local/bin/apache2-foreground", ["apache2-foreground"])
|
@ -1,8 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
# Fix some permissions
|
|
||||||
mkdir -p /data/gpg
|
|
||||||
chown -R www-data:www-data /data
|
|
||||||
|
|
||||||
# Run apache
|
|
||||||
exec apache2-foreground
|
|
Loading…
Reference in New Issue