Skip to content

Commit d6313ac

Browse files
committed
fix docker files
1 parent 54c66af commit d6313ac

6 files changed

Lines changed: 42 additions & 42 deletions

File tree

docker/arch.docker

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,26 +12,26 @@
1212

1313
FROM archlinux:latest
1414

15-
WORKDIR /opt
15+
WORKDIR /opt/
1616

1717
#install JF deps
1818

19-
COPY deps.sh /opt
20-
COPY *-build.deps /opt
19+
COPY deps.sh /opt/
20+
COPY *-build.deps /opt/
2121

2222
RUN bash /opt/deps.sh
2323

2424
#install Linux native deps
2525

26-
COPY native/linux/deps.sh /opt
27-
COPY native/linux/*-build.deps /opt
26+
COPY native/linux/deps.sh /opt/
27+
COPY native/linux/*-build.deps /opt/
2828

2929
RUN bash /opt/deps.sh
3030

3131
#install repo deps
3232

33-
COPY repo/deps.sh /opt
34-
COPY repo/*-build.deps /opt
33+
COPY repo/deps.sh /opt/
34+
COPY repo/*-build.deps /opt/
3535

3636
RUN bash /opt/deps.sh
3737

docker/debian12.docker

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,26 +12,26 @@
1212

1313
FROM debian:bookworm
1414

15-
WORKDIR /opt
15+
WORKDIR /opt/
1616

1717
#install JF deps
1818

19-
COPY deps.sh /opt
20-
COPY *-build.deps /opt
19+
COPY deps.sh /opt/
20+
COPY *-build.deps /opt/
2121

2222
RUN bash /opt/deps.sh
2323

2424
#install Linux native deps
2525

26-
COPY native/linux/deps.sh /opt
27-
COPY native/linux/*-build.deps /opt
26+
COPY native/linux/deps.sh /opt/
27+
COPY native/linux/*-build.deps /opt/
2828

2929
RUN bash /opt/deps.sh
3030

3131
#install repo deps
3232

33-
COPY repo/deps.sh /opt
34-
COPY repo/*-build.deps /opt
33+
COPY repo/deps.sh /opt/
34+
COPY repo/*-build.deps /opt/
3535

3636
RUN bash /opt/deps.sh
3737

docker/debian13.docker

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,26 +12,26 @@
1212

1313
FROM debian:trixie
1414

15-
WORKDIR /opt
15+
WORKDIR /opt/
1616

1717
#install JF deps
1818

19-
COPY deps.sh /opt
20-
COPY *-build.deps /opt
19+
COPY deps.sh /opt/
20+
COPY *-build.deps /opt/
2121

2222
RUN bash /opt/deps.sh
2323

2424
#install Linux native deps
2525

26-
COPY native/linux/deps.sh /opt
27-
COPY native/linux/*-build.deps /opt
26+
COPY native/linux/deps.sh /opt/
27+
COPY native/linux/*-build.deps /opt/
2828

2929
RUN bash /opt/deps.sh
3030

3131
#install repo deps
3232

33-
COPY repo/deps.sh /opt
34-
COPY repo/*-build.deps /opt
33+
COPY repo/deps.sh /opt/
34+
COPY repo/*-build.deps /opt/
3535

3636
RUN bash /opt/deps.sh
3737

docker/debian14.docker

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,30 +12,30 @@
1212

1313
FROM debian:forky
1414

15-
WORKDIR /opt
15+
WORKDIR /opt/
1616

1717
#fix version (currently missing)
1818

1919
RUN echo VERSION_ID=14 >> /etc/os-release
2020

2121
#install JF deps
2222

23-
COPY deps.sh /opt
24-
COPY *-build.deps /opt
23+
COPY deps.sh /opt/
24+
COPY *-build.deps /opt/
2525

2626
RUN bash /opt/deps.sh
2727

2828
#install Linux native deps
2929

30-
COPY native/linux/deps.sh /opt
31-
COPY native/linux/*-build.deps /opt
30+
COPY native/linux/deps.sh /opt/
31+
COPY native/linux/*-build.deps /opt/
3232

3333
RUN bash /opt/deps.sh
3434

3535
#install repo deps
3636

37-
COPY repo/deps.sh /opt
38-
COPY repo/*-build.deps /opt
37+
COPY repo/deps.sh /opt/
38+
COPY repo/*-build.deps /opt/
3939

4040
RUN bash /opt/deps.sh
4141

docker/fedora42.docker

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,26 +12,26 @@
1212

1313
FROM fedora:42
1414

15-
WORKDIR /opt
15+
WORKDIR /opt/
1616

1717
#install JF deps
1818

19-
COPY deps.sh /opt
20-
COPY *-build.deps /opt
19+
COPY deps.sh /opt/
20+
COPY *-build.deps /opt/
2121

2222
RUN bash /opt/deps.sh
2323

2424
#install Linux native deps
2525

26-
COPY native/linux/deps.sh /opt
27-
COPY native/linux/*-build.deps /opt
26+
COPY native/linux/deps.sh /opt/
27+
COPY native/linux/*-build.deps /opt/
2828

2929
RUN bash /opt/deps.sh
3030

3131
#install repo deps
3232

33-
COPY repo/deps.sh /opt
34-
COPY repo/*-build.deps /opt
33+
COPY repo/deps.sh /opt/
34+
COPY repo/*-build.deps /opt/
3535

3636
RUN bash /opt/deps.sh
3737

docker/fedora43.docker

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,26 +12,26 @@
1212

1313
FROM fedora:43
1414

15-
WORKDIR /opt
15+
WORKDIR /opt/
1616

1717
#install JF deps
1818

19-
COPY deps.sh /opt
20-
COPY *-build.deps /opt
19+
COPY deps.sh /opt/
20+
COPY *-build.deps /opt/
2121

2222
RUN bash /opt/deps.sh
2323

2424
#install Linux native deps
2525

26-
COPY native/linux/deps.sh /opt
27-
COPY native/linux/*-build.deps /opt
26+
COPY native/linux/deps.sh /opt/
27+
COPY native/linux/*-build.deps /opt/
2828

2929
RUN bash /opt/deps.sh
3030

3131
#install repo deps
3232

33-
COPY repo/deps.sh /opt
34-
COPY repo/*-build.deps /opt
33+
COPY repo/deps.sh /opt/
34+
COPY repo/*-build.deps /opt/
3535

3636
RUN bash /opt/deps.sh
3737

0 commit comments

Comments
 (0)