Compare commits
17 commits
29f6eac7cb
...
de969f461b
| Author | SHA1 | Date | |
|---|---|---|---|
| de969f461b | |||
| 7756aa7867 | |||
| 114c8cdb96 | |||
| e21f9712d5 | |||
| 797eb1cb32 | |||
| dafcd0f6ab | |||
| 5d82d6ad0a | |||
| 5ea8d9b57a | |||
| 46f7ef70e2 | |||
| f464d65052 | |||
| 63760034cf | |||
| f05c93a5a7 | |||
| 7a7bc4d882 | |||
| 3ff0b61851 | |||
| c427f8c320 | |||
| 986af3583c | |||
| d8ba47a8b6 |
1 changed files with 30 additions and 0 deletions
30
Dockerfile
Normal file
30
Dockerfile
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
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