Skip to content

Commit

Permalink
Merge pull request #92 from STNS/noble
Browse files Browse the repository at this point in the history
Supported Ubuntu Noble
  • Loading branch information
pyama86 authored Apr 24, 2024
2 parents 8303dc2 + 3bcbcd7 commit 3b72f58
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
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 <[email protected]>

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

0 comments on commit 3b72f58

Please sign in to comment.