Skip to content

Commit

Permalink
Reduce the number of packages installed with cvmfs
Browse files Browse the repository at this point in the history
  • Loading branch information
ben-z committed Oct 13, 2024
1 parent 1de2d5e commit 15043b4
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,14 @@ RUN cd /tmp \
&& dpkg -i cvmfs-release_4.3-1_all.deb \
&& rm cvmfs-release_4.3-1_all.deb

# Install CVMFS
RUN apt-get update && apt-get install -y \
# Install CVMFS and support tools
RUN apt-get update && apt-get install -y --no-install-recommends \
cvmfs \
cvmfs-server \
# For hosting the cvmfs repository
apache2 \
# Provides the modprobe command, required by /usr/bin/cvmfs_server
kmod \
&& rm -rf /var/lib/apt/lists/*

# MARK: publisher
Expand Down

0 comments on commit 15043b4

Please sign in to comment.