File tree Expand file tree Collapse file tree 3 files changed +45
-0
lines changed
Expand file tree Collapse file tree 3 files changed +45
-0
lines changed Original file line number Diff line number Diff line change 1+ # FROM debian:11-slim
2+ FROM ubuntu:22.04
3+
4+ ARG application_version
5+ LABEL maintainer="Joe Block <jpb@unixorn.net>"
6+ LABEL version=${application_version}
7+
8+ RUN apt-get update
9+ RUN apt-get install -y apt-utils ca-certificates --no-install-recommends
10+ RUN update-ca-certificates
11+
12+ RUN apt-get install -y moosefs-cgiserv
13+ LABEL description="moosefs-cgiserv image"
14+
15+ CMD ["bash", "-l"]
Original file line number Diff line number Diff line change 1+ # FROM debian:11-slim
2+ FROM ubuntu:22.04
3+
4+ ARG application_version
5+ LABEL maintainer="Joe Block <jpb@unixorn.net>"
6+ LABEL version=${application_version}
7+
8+ RUN apt-get update
9+ RUN apt-get install -y apt-utils ca-certificates --no-install-recommends
10+ RUN update-ca-certificates
11+
12+ RUN apt-get install -y moosefs-chunkserver
13+ LABEL description="moosefs-chunkserver image"
14+
15+ CMD ["bash", "-l"]
Original file line number Diff line number Diff line change 1+ # FROM debian:11-slim
2+ FROM ubuntu:22.04
3+
4+ ARG application_version
5+ LABEL maintainer="Joe Block <jpb@unixorn.net>"
6+ LABEL description="moosefs-master image"
7+ LABEL version=${application_version}
8+
9+ RUN apt-get update
10+ RUN apt-get install -y apt-utils ca-certificates --no-install-recommends && \
11+ update-ca-certificates
12+
13+ RUN apt-get install -y moosefs-master && \
14+
15+ CMD ["bash", "-l"]
You can’t perform that action at this time.
0 commit comments