Skip to content

Commit

Permalink
Merge pull request #25 from boegel/ubuntu-20.04-python2
Browse files Browse the repository at this point in the history
add recipe for Ubuntu 20.04 container with Python 2.7
  • Loading branch information
boegel authored Aug 31, 2023
2 parents 1f688ae + 3c38ff3 commit 9931bd9
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build-publish-containers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ jobs:
- almalinux-8.6
- almalinux-9.0
- ubuntu-20.04
- ubuntu-20.04-python2
- ubuntu-22.04
fail-fast: false
steps:
Expand Down
13 changes: 13 additions & 0 deletions ubuntu-20.04-python2/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
FROM ubuntu:20.04
RUN useradd -ms /bin/bash easybuild
ENV DEBIAN_FRONTEND=noninteractive
RUN apt update \
&& apt install -y curl python2 python-pip-whl \
&& curl https://bootstrap.pypa.io/pip/2.7/get-pip.py --output get-pip.py \
&& python2 get-pip.py \
&& LMOD_VERSION=8.6.12 \
&& curl -OL https://github.com/surak/Lmod/releases/download/${LMOD_VERSION}/lmod_${LMOD_VERSION}_all.deb \
&& apt install -y ./lmod_${LMOD_VERSION}_all.deb
# debianutils provides 'which' command
RUN apt install -y bzip2 debianutils diffutils file gcc g++ git gzip libibverbs-dev openssl libssl-dev make patch sudo tar unzip xz-utils
RUN python2 -m pip install archspec==0.1.4

0 comments on commit 9931bd9

Please sign in to comment.