-
Notifications
You must be signed in to change notification settings - Fork 5
/
Dockerfile
142 lines (124 loc) · 3.89 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
# Latest stable version of Ubuntu, of course
FROM ubuntu:22.04
LABEL org.opencontainers.image.authors "Leandro Heck <[email protected]>"
LABEL org.opencontainers.image.description "Kicad 8 and KiRI"
LABEL org.opencontainers.image.url "https://hub.docker.com/r/leoheck/kiri/main"
LABEL org.opencontainers.image.documentation "https://github.com/leoheck/kiri-docker"
ARG DEBIAN_FRONTEND=noninteractive
ARG DEBCONF_NOWARNINGS="yes"
ARG TERM 'dumb'
RUN apt-get update
RUN apt-get install -y \
sudo \
git \
zsh \
curl \
coreutils \
software-properties-common \
x11-utils \
x11-xkb-utils \
xvfb \
opam \
build-essential \
pkg-config \
libgmp-dev \
util-linux \
python-is-python3 \
python3-pip \
dos2unix \
librsvg2-bin \
imagemagick \
xdotool \
rename \
bsdmainutils ;\
apt-get clean ;\
rm -rf /var/lib/apt/lists/* ;\
rm -rf /var/tmp/*
# Install latest Kicad
RUN add-apt-repository -y ppa:kicad/kicad-8.0-releases
RUN apt-get install --no-install-recommends -y kicad && \
apt-get purge -y \
software-properties-common ;\
apt-get clean ;\
rm -rf /var/lib/apt/lists/* ;\
rm -rf /var/tmp/*
# Create user
RUN useradd -rm -d "/home/kiri" -s "/usr/bin/zsh" -g root -G sudo -u 1000 kiri -p kiri
# Run sudo without password
RUN echo "kiri ALL=(ALL) NOPASSWD:ALL" | tee sudo -a "/etc/sudoers"
# Change current user
USER kiri
WORKDIR "/home/kiri"
ENV USER kiri
ENV DISPLAY :0
ENV PATH "${PATH}:/home/kiri/.local/bin"
# Python dependencies
RUN yes | pip3 install \
"pillow>8.2.0" \
"six>=1.15.0" \
"python_dateutil>=2.8.1" \
"pytz>=2021.1" \
"pathlib>=1.0.1" && \
pip3 cache purge
# Opam dependencies
RUN yes | opam init --disable-sandboxing && \
opam switch create 4.10.2 && \
eval "$(opam env)" && \
opam update && \
opam install -y \
digestif \
lwt \
lwt_ppx \
cmdliner \
base64 \
sha \
tyxml \
git-unix ;\
opam clean -a -c -s --logs -r ;\
rm -rf ~/.opam/download-cache ;\
rm -rf ~/.opam/repo/*
# Oh-my-zsh, please
RUN zsh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" || true
# Install kiri, kidiff and plotgitsch
ADD https://api.github.com/repos/leoheck/kiri/git/refs/heads/main kiri_version.json
ENV KIRI_HOME "/home/kiri/.local/share/"
RUN git clone --recurse-submodules -j8 https://github.com/leoheck/kiri.git "${KIRI_HOME}/kiri"
RUN cd "${KIRI_HOME}/kiri/submodules/plotkicadsch" && \
opam pin add -y kicadsch . && \
opam pin add -y plotkicadsch . && \
opam install -y plotkicadsch; \
opam clean -a -c -s --logs -r ;\
rm -rf ~/.opam/download-cache ;\
rm -rf ~/.opam/repo/*
# Opam configuration
RUN echo | tee -a "${HOME}/.zshrc"
RUN echo '# OPAM configuration' | tee -a "${HOME}/.zshrc"
RUN echo "test -r /home/kiri/.opam/opam-init/init.sh && . /home/kiri/.opam/opam-init/init.sh > /dev/null 2> /dev/null || true" | tee -a "${HOME}/.zshrc"
# KiRI environment
RUN echo | tee -a "${HOME}/.zshrc"
RUN echo '# KIRI Environment' | tee -a "${HOME}/.zshrc"
RUN echo 'export KIRI_HOME=${HOME}/.local/share/kiri' | tee -a "${HOME}/.zshrc"
RUN echo 'export PATH=${KIRI_HOME}/submodules/KiCad-Diff/bin:${PATH}' | tee -a "${HOME}/.zshrc"
RUN echo 'export PATH=${KIRI_HOME}/bin:${PATH}' | tee -a "${HOME}/.zshrc"
# Custom commands
RUN echo | tee -a "${HOME}/.zshrc"
RUN echo '# Custom Commands' | tee -a "${HOME}/.zshrc"
RUN echo 'function ip() { awk "/32 host/ { print f } {f=\$2}" /proc/net/fib_trie | sort | uniq | grep -v 127.0.0.1 | head -n1 }' | tee -a "${HOME}/.zshrc"
RUN echo 'alias kiri="kiri -i \$(ip)"' | tee -a "${HOME}/.zshrc"
# Clean unnecessary stuff
RUN sudo apt-get purge -y \
curl \
opam \
build-essential \
pkg-config \
libgmp-dev
RUN sudo apt-get -y autoremove
RUN sudo rm -rf \
/tmp/* \
/var/tmp/* \
/usr/share/doc/* \
/usr/share/info/* \
/usr/share/man/*
# Initialize Kicad config files to skip default popups of setup
COPY config "/home/kiri/.config"
RUN sudo chown -R kiri "/home/kiri/.config"