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