Skip to content

Commit

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

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
18 changes: 16 additions & 2 deletions 9.10/slim-bullseye/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,25 @@ FROM debian:bullseye-slim

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 3394beb

Please sign in to comment.