This is an automated email from the ASF dual-hosted git repository.
bneradt pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/trafficserver-ci.git
The following commit(s) were added to refs/heads/main by this push:
new 179ac83 Adding ubuntu 2304 Dockerfile (#172)
179ac83 is described below
commit 179ac83b726db2b0be53816978fab9a6b7b60156
Author: Brian Neradt <[email protected]>
AuthorDate: Wed Jun 7 14:35:15 2023 -0500
Adding ubuntu 2304 Dockerfile (#172)
---
docker/ubuntu2304/Dockerfile | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/docker/ubuntu2304/Dockerfile b/docker/ubuntu2304/Dockerfile
new file mode 100644
index 0000000..ec18dd7
--- /dev/null
+++ b/docker/ubuntu2304/Dockerfile
@@ -0,0 +1,18 @@
+FROM ubuntu:23.04
+
+ENV DEBIAN_FRONTEND=noninteractive
+
+RUN apt-get update; \
+ apt-get -y install build-essential llvm ccache \
+ make pkgconf bison flex g++ clang gettext libc++-dev autoconf automake \
+ libtool autotools-dev git distcc file wget openssl hwloc intltool-debian \
+ clang-tools-14 clang-14 ; \
+
+ apt-get -y install libssl-dev libexpat1-dev \
+ libpcre3-dev libcap-dev libhwloc-dev libunwind8 libunwind-dev zlib1g-dev \
+ libjemalloc-dev libluajit-5.1-dev liblzma-dev \
+ libhiredis-dev libbrotli-dev libncurses-dev libgeoip-dev libmagick++-dev \
+ libmaxminddb-dev libcjose-dev libcjose0 libjansson-dev; \
+
+ apt-get -y autoremove; apt-get -y clean;
+