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

Supported Ubuntu Noble #92

Merged
merged 4 commits into from
Apr 24, 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
9 changes: 9 additions & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: .
Expand Down
24 changes: 24 additions & 0 deletions dockerfiles/Dockerfile.ubuntu-24
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
FROM ubuntu:noble
MAINTAINER pyama86 <www.kazu.com@gmail.com>

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