build(docker/backend): fix tzdata install requiring confirmation

This commit is contained in:
Sarah Vaupel 2024-12-04 16:31:38 +01:00
parent 6c525bc986
commit ca4eac3af9

View File

@ -1,10 +1,12 @@
FROM docker.io/ubuntu:latest
# 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
ENV LANG=en_US.UTF-8