forked from sunde41/recoll
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
25 lines (18 loc) · 712 Bytes
/
Dockerfile
File metadata and controls
25 lines (18 loc) · 712 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
FROM debian:stretch-slim
MAINTAINER sunde41
RUN apt-get update && \
apt-get install -y apt-transport-https git
RUN echo deb https://www.lesbonscomptes.com/recoll/debian/ stretch main > \
/etc/apt/sources.list.d/recoll.list
RUN echo deb-src https://www.lesbonscomptes.com/recoll/debian/ stretch main >> \
/etc/apt/sources.list.d/recoll.list
RUN apt-get update && \
apt-get install -y --allow-unauthenticated --force-yes recollcmd python3-recoll \
gunicorn && \
apt-get autoremove && apt-get clean
RUN mkdir /data && mkdir -p /root/.recoll && \
git clone https://@opensourceprojects.eu/git/p/recollwebui/code recollwebui
EXPOSE 80
ADD start.sh /
RUN chmod +x /start.sh
CMD '/start.sh'