Skip to content

Commit 5c9827b

Browse files
committed
fixed both docker files
1 parent f5bf010 commit 5c9827b

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/Dockerfile.centos

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ RUN yum -y update
44
RUN yum -y install glibc glibc-devel zlib-devel wget ncurses-devel ncurses-compat-libs make gcc gcc-c++
55

66
# Install GHC since stack's local install has issues
7-
RUN wget https://downloads.haskell.org/ghc/9.6.6/ghc-9.6.6-aarch64-deb10-linux.tar.xz
8-
RUN tar xvf ghc-9.6.6-aarch64-deb10-linux.tar.xz
9-
RUN cd ghc-9.6.6-aarch64-deb10-linux; ./configure; make install
7+
RUN wget https://downloads.haskell.org/~ghc/9.6.6/ghc-9.6.6-x86_64-centos7-linux.tar.xz
8+
RUN tar xvf ghc-9.6.6-x86_64-centos7-linux.tar.xz
9+
RUN cd ghc-9.6.6-x86_64-unknown-linux; ./configure; make install
1010

1111
# install stack
1212
RUN curl -sSL https://get.haskellstack.org/ | sh

.github/workflows/Dockerfile.centos_aarch64

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ RUN yum -y install zlib-devel wget ncurses-devel ncurses-compat-libs make gcc gc
66
# Install GHC since stack's local install has issues
77
RUN wget https://downloads.haskell.org/ghc/9.6.6/ghc-9.6.6-aarch64-deb10-linux.tar.xz
88
RUN tar xvf ghc-9.6.6-aarch64-deb10-linux.tar.xz
9-
RUN cd ghc-9.6.6-aarch64-deb10-linux; ./configure; make install
9+
RUN cd ghc-9.6.6-aarch64-unknown-linux; ./configure; make install
1010

1111
# install stack
1212
RUN curl -sSL https://get.haskellstack.org/ | sh

0 commit comments

Comments
 (0)