From 3bcbcd7ea78436ff255906cfee7369aac56421b9 Mon Sep 17 00:00:00 2001 From: pyama Date: Wed, 24 Apr 2024 15:10:51 +0900 Subject: [PATCH] support ubuntu noble --- docker-compose.yaml | 9 +++++++++ dockerfiles/Dockerfile.ubuntu-24 | 24 ++++++++++++++++++++++++ 2 files changed, 33 insertions(+) create mode 100644 dockerfiles/Dockerfile.ubuntu-24 diff --git a/docker-compose.yaml b/docker-compose.yaml index 8f91e44..7111a06 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -36,6 +36,15 @@ services: environment: DIST: jammy command: make deb + nss_ubuntu24: + build: + context: . + dockerfile: dockerfiles/Dockerfile.ubuntu-24 + volumes: + - .:/stns + environment: + DIST: noble + command: make deb nss_debian10: build: context: . diff --git a/dockerfiles/Dockerfile.ubuntu-24 b/dockerfiles/Dockerfile.ubuntu-24 new file mode 100644 index 0000000..cef6241 --- /dev/null +++ b/dockerfiles/Dockerfile.ubuntu-24 @@ -0,0 +1,24 @@ +FROM ubuntu:noble +MAINTAINER pyama86 + +RUN ln -sf /usr/share/zoneinfo/Asia/Tokyo /etc/localtime +RUN apt-get -qqy update && \ + apt-get install -qqy \ + tzdata \ + curl \ + glibc-source \ + gcc \ + make \ + bzip2 \ + unzip \ + debhelper \ + dh-make \ + devscripts \ + cdbs \ + clang \ + git + +ENV LIBDIR=/usr/lib +ENV USER root +RUN mkdir /stns +WORKDIR /stns