-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathDockerfile
37 lines (31 loc) · 916 Bytes
/
Dockerfile
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
26
27
28
29
30
31
32
33
34
35
36
37
FROM ubuntu:20.04
LABEL maintainer="Bernd Doser <bernd.doser@braintwister.eu>"
ARG TIMEZONE='Europe/Berlin'
ARG DEBIAN_FRONTEND=noninteractive
RUN echo $TIMEZONE > /etc/timezone && \
apt-get update && apt-get install -y tzdata && \
rm /etc/localtime && \
ln -snf /usr/share/zoneinfo/$TIMEZONE /etc/localtime && \
dpkg-reconfigure -f noninteractive tzdata && \
apt-get clean
# Install dependencies
RUN apt-get update \
&& apt-get -y install \
gir1.2-gexiv2-0.10 \
gir1.2-gtk-3.0 \
gir1.2-osmgpsmap-1.0 \
graphviz \
librsvg2-2 \
python3-bsddb3 \
python3-gi \
python3-gi-cairo \
python3-pillow \
python3-pip \
xdg-utils \
xvfb \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
ADD https://github.com/gramps-project/gramps/releases/download/v5.1.2/gramps_5.1.2-1_all.deb /tmp/gramps.deb
RUN dpkg -i /tmp/gramps.deb \
&& rm /tmp/gramps.deb
CMD gramps