File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ #Debian/12 (bookworm) with build tools
2+
3+ #To build: docker build -f debian12.docker -t amd64/debian12 .
4+
5+ #see https://docs.docker.com/reference/dockerfile/
6+
7+ FROM debian:bookworm
8+
9+ WORKDIR /opt
10+
11+ #install JF deps
12+
13+ COPY deps.sh /opt
14+
15+ RUN bash /opt/deps.sh
16+
17+ #install Linux native deps
18+
19+ COPY native/linux/deps.sh /opt
20+
21+ RUN bash /opt/deps.sh
22+
23+ #cleanup
24+
25+ RUN rm /opt/deps.sh
Original file line number Diff line number Diff line change 1+ #Debian/13 (trixie) with build tools
2+
3+ #To build: docker build -f debian13.docker -t amd64/debian13 .
4+
5+ #see https://docs.docker.com/reference/dockerfile/
6+
7+ FROM debian:trixie
8+
9+ WORKDIR /opt
10+
11+ #install JF deps
12+
13+ COPY deps.sh /opt
14+
15+ RUN bash /opt/deps.sh
16+
17+ #install Linux native deps
18+
19+ COPY native/linux/deps.sh /opt
20+
21+ RUN bash /opt/deps.sh
22+
23+ #cleanup
24+
25+ RUN rm /opt/deps.sh
Original file line number Diff line number Diff line change 1+ #Fedora/42 with build tools
2+
3+ #To build: docker build -f fedora42.docker -t amd64/fedora42 .
4+
5+ #see https://docs.docker.com/reference/dockerfile/
6+
7+ FROM fedora:42
8+
9+ WORKDIR /opt
10+
11+ #install JF deps
12+
13+ COPY deps.sh /opt
14+
15+ RUN bash /opt/deps.sh
16+
17+ #install Linux native deps
18+
19+ COPY native/linux/deps.sh /opt
20+
21+ RUN bash /opt/deps.sh
22+
23+ #cleanup
24+
25+ RUN rm /opt/deps.sh
You can’t perform that action at this time.
0 commit comments