Skip to content

Commit 5d4d22d

Browse files
committed
Update to 3.117
- Add Dockerfiles for netdump and cli - Update all Dockerfiles to use debian:12-slim Signed-off-by: Joe Block <jpb@unixorn.net>
1 parent c6e4dcb commit 5d4d22d

File tree

6 files changed

+33
-24
lines changed

6 files changed

+33
-24
lines changed

Dockerfile.cgiserver

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
1-
# FROM debian:11-slim
2-
FROM ubuntu:22.04
1+
FROM debian:12-slim
32

43
ARG application_version
54
LABEL maintainer="Joe Block <jpb@unixorn.net>"
65
LABEL version=${application_version}
76

8-
RUN apt-get update
9-
RUN apt-get install -y apt-utils ca-certificates --no-install-recommends
7+
RUN apt-get update && \
8+
apt-get install -y apt-utils ca-certificates --no-install-recommends
109
RUN update-ca-certificates
1110

1211
RUN apt-get install -y moosefs-cgiserv

Dockerfile.chunkserver

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
1-
# FROM debian:11-slim
2-
FROM ubuntu:22.04
1+
FROM debian:12-slim
32

43
ARG application_version
54
LABEL maintainer="Joe Block <jpb@unixorn.net>"
65
LABEL version=${application_version}
76

8-
RUN apt-get update
9-
RUN apt-get install -y apt-utils ca-certificates --no-install-recommends
7+
RUN apt-get update && \
8+
apt-get install -y apt-utils ca-certificates --no-install-recommends
109
RUN update-ca-certificates
1110

1211
RUN apt-get install -y moosefs-chunkserver

Dockerfile.cli

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
FROM debian:12-slim
2+
3+
ARG application_version
4+
LABEL maintainer="Joe Block <jpb@unixorn.net>"
5+
LABEL description="moosefs-cli image"
6+
LABEL version=${application_version}
7+
8+
RUN apt-get update && \
9+
apt-get install -y apt-utils ca-certificates --no-install-recommends
10+
RUN update-ca-certificates
11+
12+
RUN apt-get install -y moosefs-cli
13+
14+
CMD ["bash", "-l"]

Dockerfile.master

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
1-
# FROM debian:11-slim
2-
FROM ubuntu:22.04
1+
FROM debian:12-slim
32

43
ARG application_version
54
LABEL maintainer="Joe Block <jpb@unixorn.net>"
65
LABEL version=${application_version}
76

8-
RUN apt-get update
9-
RUN apt-get install -y apt-utils ca-certificates --no-install-recommends
7+
RUN apt-get update && \
8+
apt-get install -y apt-utils ca-certificates --no-install-recommends
109
RUN update-ca-certificates
1110

1211
RUN apt-get install -y moosefs-master

Dockerfile.metalogger

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
1-
# FROM debian:11-slim
2-
FROM ubuntu:22.04
1+
FROM debian:12-slim
32

43
ARG application_version
54
LABEL maintainer="Joe Block <jpb@unixorn.net>"
65
LABEL version=${application_version}
76

8-
RUN apt-get update
9-
RUN apt-get install -y apt-utils ca-certificates --no-install-recommends
7+
RUN apt-get update && \
8+
apt-get install -y apt-utils ca-certificates --no-install-recommends
109
RUN update-ca-certificates
1110

1211
RUN apt-get install -y moosefs-metalogger
1312

1413
LABEL description="moosefs-metalogger image"
15-
CMD ["/usr/sbin/mfsmetalogger", "start"]
14+
CMD ["/usr/sbin/mfsmetalogger", "start"]

Dockerfile.netdump

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
1-
# FROM debian:11-slim
2-
FROM ubuntu:22.04
1+
FROM debian:12-slim
32

43
ARG application_version
54
LABEL maintainer="Joe Block <jpb@unixorn.net>"
6-
LABEL description="moosefs-master image"
5+
LABEL description="moosefs-netdump image"
76
LABEL version=${application_version}
87

9-
RUN apt-get update
10-
RUN apt-get install -y apt-utils ca-certificates --no-install-recommends && \
11-
update-ca-certificates
8+
RUN apt-get update && \
9+
apt-get install -y apt-utils ca-certificates --no-install-recommends
10+
RUN update-ca-certificates
1211

13-
RUN apt-get install -y moosefs-master && \
12+
RUN apt-get install -y moosefs-netdump
1413

1514
CMD ["bash", "-l"]

0 commit comments

Comments
 (0)