Merge branch '145-build-system-rewrite' into fradrive/merge-jost-new-build

This commit is contained in:
Steffen Jost 2024-12-06 12:44:14 +01:00
commit 19a05e9940

View File

@ -1,15 +1,16 @@
FROM docker.io/ubuntu:latest
# debug info
# RUN lsb_release -a
# RUN curl -k https://google.de
RUN env
# RUN curl -sSLk -x $HTTP_PROXY
# compile-time dependencies
RUN apt-get -y update && apt-get -y install inotify-tools
RUN apt-get -y update && apt-get -y install haskell-stack git
RUN apt-get -y update && apt-get -y install alex g++ happy libghc-zlib-dev libpq-dev libsodium-dev locales locales-all pkg-config
RUN apt-get -y update && apt-get -y install alex g++ happy libghc-zlib-dev libpq-dev libsodium-dev pkg-config
RUN apt-get -y update && apt-get -y install llvm
RUN apt-get -y update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends tzdata
RUN apt-get -y update && apt-get -y install locales locales-all
# run-time dependencies for uniworx binary
RUN apt-get -y update && apt-get -y install fonts-roboto
RUN apt-get -y update && apt-get -y install texlive-luatex
ENV LANG=en_US.UTF-8