Skip to content

Commit e4474d2

Browse files
committed
add docker files
1 parent 4c4da67 commit e4474d2

3 files changed

Lines changed: 75 additions & 0 deletions

File tree

debian12.docker

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
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

debian13.docker

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
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

fedora42.docker

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
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

0 commit comments

Comments
 (0)