File tree Expand file tree Collapse file tree 6 files changed +33
-24
lines changed
Expand file tree Collapse file tree 6 files changed +33
-24
lines changed Original file line number Diff line number Diff line change 1- # FROM debian:11-slim
2- FROM ubuntu:22.04
1+ FROM debian:12-slim
32
43ARG application_version
54LABEL maintainer="Joe Block <jpb@unixorn.net>"
65LABEL 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
109RUN update-ca-certificates
1110
1211RUN apt-get install -y moosefs-cgiserv
Original file line number Diff line number Diff line change 1- # FROM debian:11-slim
2- FROM ubuntu:22.04
1+ FROM debian:12-slim
32
43ARG application_version
54LABEL maintainer="Joe Block <jpb@unixorn.net>"
65LABEL 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
109RUN update-ca-certificates
1110
1211RUN apt-get install -y moosefs-chunkserver
Original file line number Diff line number Diff line change 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"]
Original file line number Diff line number Diff line change 1- # FROM debian:11-slim
2- FROM ubuntu:22.04
1+ FROM debian:12-slim
32
43ARG application_version
54LABEL maintainer="Joe Block <jpb@unixorn.net>"
65LABEL 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
109RUN update-ca-certificates
1110
1211RUN apt-get install -y moosefs-master
Original file line number Diff line number Diff line change 1- # FROM debian:11-slim
2- FROM ubuntu:22.04
1+ FROM debian:12-slim
32
43ARG application_version
54LABEL maintainer="Joe Block <jpb@unixorn.net>"
65LABEL 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
109RUN update-ca-certificates
1110
1211RUN apt-get install -y moosefs-metalogger
1312
1413LABEL description="moosefs-metalogger image"
15- CMD ["/usr/sbin/mfsmetalogger", "start"]
14+ CMD ["/usr/sbin/mfsmetalogger", "start"]
Original file line number Diff line number Diff line change 1- # FROM debian:11-slim
2- FROM ubuntu:22.04
1+ FROM debian:12-slim
32
43ARG application_version
54LABEL maintainer="Joe Block <jpb@unixorn.net>"
6- LABEL description="moosefs-master image"
5+ LABEL description="moosefs-netdump image"
76LABEL 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
1514CMD ["bash", "-l"]
You can’t perform that action at this time.
0 commit comments