Skip to content

Commit

Permalink
updated dockerfile to include libglib for glib
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexPatrie committed Feb 16, 2024
1 parent 2fa4cc8 commit 6e3207c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ RUN apt-get update && apt-get install -y \
wget \
pkg-config \
git \
libglib2.0-dev \
golang-go \
&& rm -rf /var/lib/apt/lists/*

Expand All @@ -46,14 +47,14 @@ ENV PATH="/usr/local/go/bin:${PATH}"
# Verify Go installation
RUN go version

# Clone the Singularity repository
RUN git clone https://github.com/sylabs/singularity.git && \
# Clone the Singularity repository with submodules
RUN git clone --recurse-submodules https://github.com/sylabs/singularity.git && \
cd singularity && \
git checkout v4.1.1

WORKDIR /app/singularity

# Run mconfig
# Proceed with the Singularity build process
RUN ./mconfig --prefix=/opt/singularity && \
make -C builddir && \
make -C builddir install
Expand Down

0 comments on commit 6e3207c

Please sign in to comment.