mirror of
https://github.com/Mailu/Mailu.git
synced 2025-02-19 19:10:25 +02:00
Merge pull request #238 from nalt/master
Admin: Switch to alpine for smaller image size
This commit is contained in:
commit
1c0717e3db
@ -1,10 +1,12 @@
|
||||
FROM python:3
|
||||
FROM python:3-alpine
|
||||
|
||||
RUN mkdir -p /app
|
||||
WORKDIR /app
|
||||
|
||||
COPY requirements.txt .
|
||||
RUN pip install -r requirements.txt
|
||||
RUN apk --update add --virtual build-dep openssl-dev libffi-dev python-dev build-base \
|
||||
&& pip install -r requirements.txt \
|
||||
&& apk del build-dep
|
||||
|
||||
COPY mailu ./mailu
|
||||
COPY migrations ./migrations
|
||||
|
Loading…
x
Reference in New Issue
Block a user