1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-03-14 14:04:21 +00:00
Files
Interlisp.maiko/.github/workflows/Dockerfile_builder

21 lines
577 B
Plaintext
Executable File

#*******************************************************************************
#
# Dockerfile to build image with all the tools to build Maiko
#
# Copyright 2023 by Interlisp.org
#
# Frank Halasz 2023-02-21
#
# ******************************************************************************
FROM ubuntu:22.04
SHELL ["/bin/bash", "-c"]
USER root:root
# Install build tools
RUN apt-get update \
&& apt-get install -y build-essential gcc pkgconf make clang cmake \
&& apt-get install -y libx11-dev libbsd-dev libpcap-dev
USER root
WORKDIR /root
ENTRYPOINT /bin/bash