Skip to content

Commit

Permalink
Dockerfile.base-build: use apt and install pkg-config
Browse files Browse the repository at this point in the history
needed for building digest
  • Loading branch information
juhp committed Sep 18, 2023
1 parent dc2a4ee commit 324de71
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/Dockerfile.base-build
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@ FROM fpco/pid1:20.04

ENV LANG C.UTF-8
RUN export DEBIAN_FRONTEND=noninteractive && \
apt-get update && \
apt-get install curl -y && \
apt update && \
apt upgrade && \
apt install curl pkg-config -y && \
curl -sSL https://get.haskellstack.org/ | sh && \
unset DEBIAN_FRONTEND
RUN stack update
Expand Down

0 comments on commit 324de71

Please sign in to comment.