Skip to content

Commit

Permalink
fix: missing deps for buster
Browse files Browse the repository at this point in the history
  • Loading branch information
develop7 committed Jul 18, 2024
1 parent 3394beb commit 1af6472
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions 9.10/buster/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,25 @@ FROM debian:buster

ENV LANG C.UTF-8

# additional haskell specific deps
# common haskell + stack dependencies
RUN apt-get update && \
apt-get install -y --no-install-recommends \
ca-certificates \
curl \
dpkg-dev \
git \
gcc \
gnupg \
g++ \
libc6-dev \
libffi-dev \
libgmp-dev \
libnuma-dev \
libtinfo-dev && \
libtinfo-dev \
make \
netbase \
xz-utils \
zlib1g-dev && \
rm -rf /var/lib/apt/lists/*

ARG STACK=2.15.7
Expand Down

0 comments on commit 1af6472

Please sign in to comment.