forked from linuxserver/docker-calibre
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
28 lines (25 loc) · 668 Bytes
/
Copy pathDockerfile
File metadata and controls
28 lines (25 loc) · 668 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
26
27
28
FROM --platform=$TARGETPLATFORM ghcr.io/linuxserver/baseimage-rdesktop-web:focal
ARG TARGETPLATFORM
ENV \
CUSTOM_PORT="8080" \
GUIAUTOSTART="true" \
HOME="/config"
RUN \
echo "**** install runtime packages ****" && \
apt-get update && \
apt-get install -y --no-install-recommends \
gnucash \
# Thank you docs: https://www.gnucash.org/docs/v4/C/gnucash-guide/basics-files1.html#ftn.idm1300
libdbd-sqlite3 \
libdbd-pgsql \
libdbd-mysql \
&& \
dbus-uuidgen > /etc/machine-id && \
echo "**** cleanup ****" && \
apt-get clean && \
rm -rf \
/tmp/* \
/var/lib/apt/lists/* \
/var/tmp/*
# add local files
COPY root/ /