Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adding ubuntu 24.04 #20

Merged
merged 13 commits into from
May 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/dockerx_ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,14 @@ jobs:
- { dockerfile: "ubuntu/Dockerfile.bionic", context: "ubuntu", image_name: "ubuntu", tag_name: "bionic" }
- { dockerfile: "ubuntu/Dockerfile.focal", context: "ubuntu", image_name: "ubuntu", tag_name: "focal" }
- { dockerfile: "ubuntu/Dockerfile.jammy", context: "ubuntu", image_name: "ubuntu", tag_name: "jammy" }
- { dockerfile: "ubuntu/Dockerfile.noble", context: "ubuntu", image_name: "ubuntu", tag_name: "noble" }
- { dockerfile: "ubuntu_dev/Dockerfile", context: "ubuntu_dev", image_name: "ubuntu_dev", tag_name: "latest" }
- { dockerfile: "ubuntu_dev/Dockerfile.rolling", context: "ubuntu_dev", image_name: "ubuntu_dev", tag_name: "rolling" }
- { dockerfile: "ubuntu_dev/Dockerfile.xenial", context: "ubuntu_dev", image_name: "ubuntu_dev", tag_name: "xenial" }
- { dockerfile: "ubuntu_dev/Dockerfile.bionic", context: "ubuntu_dev", image_name: "ubuntu_dev", tag_name: "bionic" }
- { dockerfile: "ubuntu_dev/Dockerfile.focal", context: "ubuntu_dev", image_name: "ubuntu_dev", tag_name: "focal" }
- { dockerfile: "ubuntu_dev/Dockerfile.jammy", context: "ubuntu_dev", image_name: "ubuntu_dev", tag_name: "jammy" }
- { dockerfile: "ubuntu_dev/Dockerfile.noble", context: "ubuntu_dev", image_name: "ubuntu_dev", tag_name: "noble" }
runs-on: self-hosted
steps:
- name: Checkout code
Expand Down
2 changes: 1 addition & 1 deletion ubuntu/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:latest
FROM ubuntu:jammy

LABEL version="1.0"
LABEL maintainer="Hive Solutions <[email protected]>"
Expand Down
15 changes: 15 additions & 0 deletions ubuntu/Dockerfile.noble
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
FROM ubuntu:noble

LABEL version="1.0"
LABEL maintainer="Hive Solutions <[email protected]>"

ARG DEBIAN_FRONTEND=noninteractive

RUN apt-get update &&\
apt-get install -y -q --no-install-recommends sudo bash wget git openssl unzip ca-certificates dirmngr apt-transport-https python3 python-is-python3 &&\
apt-get clean && rm -rf /var/lib/apt/lists/* &&\
wget "https://bootstrap.pypa.io/get-pip.py" &&\
python get-pip.py --no-cache-dir --no-compile --break-system-packages &&\
rm get-pip.py

CMD ["/bin/bash"]
5 changes: 2 additions & 3 deletions ubuntu/Dockerfile.rolling
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,10 @@ LABEL maintainer="Hive Solutions <[email protected]>"
ARG DEBIAN_FRONTEND=noninteractive

RUN apt-get update &&\
apt-get install -y -q --no-install-recommends sudo bash wget git openssl unzip ca-certificates dirmngr apt-transport-https python3 python3-distutils &&\
hugo-gomes marked this conversation as resolved.
Show resolved Hide resolved
apt-get install -y -q --no-install-recommends sudo bash wget git openssl unzip ca-certificates dirmngr apt-transport-https python3 python-is-python3 &&\
apt-get clean && rm -rf /var/lib/apt/lists/* &&\
rm /usr/lib/python3.11/EXTERNALLY-MANAGED &&\
wget "https://bootstrap.pypa.io/get-pip.py" &&\
python3 get-pip.py --no-cache-dir --no-compile &&\
python get-pip.py --no-cache-dir --no-compile --break-system-packages &&\
rm get-pip.py

CMD ["/bin/bash"]
13 changes: 13 additions & 0 deletions ubuntu_dev/Dockerfile.noble
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
FROM hivesolutions/ubuntu:noble

LABEL version="1.0"
LABEL maintainer="Hive Solutions <[email protected]>"

ARG DEBIAN_FRONTEND=noninteractive

RUN apt-get update &&\
apt-get install -y -q --no-install-recommends sudo gcc make curl pypy3 linux-headers-generic\
libssl-dev python3-dev pypy3-dev &&\
apt-get clean && rm -rf /var/lib/apt/lists/*

CMD ["/bin/bash"]
Loading