File tree Expand file tree Collapse file tree 2 files changed +30
-0
lines changed
Expand file tree Collapse file tree 2 files changed +30
-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-master
13+ LABEL description="moosefs-master 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-metalogger
13+
14+ LABEL description="moosefs-metalogger image"
15+ CMD ["bash", "-l"]
You can’t perform that action at this time.
0 commit comments