Compare commits
18 commits
de969f461b
...
29f6eac7cb
| Author | SHA1 | Date | |
|---|---|---|---|
| 29f6eac7cb | |||
| 0d35907d53 | |||
| 9db8fd3957 | |||
| ad0dafa841 | |||
| c9f6358254 | |||
| 3e829d126c | |||
| b8eac2856c | |||
| afc9a3b211 | |||
| 9edd5cb436 | |||
| 2fc7948112 | |||
| 10469b3677 | |||
| 1b360e3592 | |||
| f452197fca | |||
| 9d4e278b91 | |||
| d012a8e396 | |||
| 0f03f9eb7a | |||
| 20c78cf015 | |||
| f1cb583d0f |
1 changed files with 0 additions and 30 deletions
30
Dockerfile
30
Dockerfile
|
|
@ -1,30 +0,0 @@
|
|||
FROM haskell:9.10
|
||||
|
||||
# Install system dependencies
|
||||
RUN apt-get update && apt-get install -y \
|
||||
git \
|
||||
curl \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
# Install Node.js (for GitHub Actions compatibility)
|
||||
RUN curl -fsSL https://deb.nodesource.com/setup_22.x | bash - && \
|
||||
apt-get install -y nodejs && \
|
||||
rm -rf /var/lib/apt/lists/*
|
||||
|
||||
# Update cabal and install Haskell tools
|
||||
RUN cabal update && \
|
||||
cabal install --install-method=copy --installdir=/usr/local/bin \
|
||||
fourmolu \
|
||||
hlint \
|
||||
cabal-gild
|
||||
|
||||
# Verify installations
|
||||
RUN ghc --version && \
|
||||
cabal --version && \
|
||||
node --version && \
|
||||
fourmolu --version && \
|
||||
hlint --version && \
|
||||
cabal-gild --version
|
||||
|
||||
# Set working directory
|
||||
WORKDIR /workspace
|
||||
Loading…
Add table
Add a link
Reference in a new issue