Skip to content

Commit

Permalink
Use same base image and system dependencies as in 9.10 bullseye img
Browse files Browse the repository at this point in the history
  • Loading branch information
jhrcek committed Aug 12, 2024
1 parent 1906a2e commit 038a810
Showing 1 changed file with 17 additions and 3 deletions.
20 changes: 17 additions & 3 deletions 9.6/bullseye/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,26 @@
FROM buildpack-deps:bullseye
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.5
Expand Down

0 comments on commit 038a810

Please sign in to comment.