Skip to content
Snippets Groups Projects
Verified Commit 4a133a4b authored by Olivier Benz's avatar Olivier Benz
Browse files

Merge branch 'develop'

parents c9f7ac7b a1bcc142
No related branches found
No related tags found
No related merge requests found
IMAGE=glcr.b-data.ch/ghc/ghc-musl
# GHC version
GHC_VERSION=9.2.7
# Cabal version
CABAL_VERSION=3.8.1.0
# Stack version
STACK_VERSION=2.11.1
# Installation prefix
# default: /usr/local
# other: /opt, /opt/local
PREFIX=
# Execution mode
# default: install
# other: uninstall
MODE=
ARG IMAGE
ARG GHC_VERSION
FROM ${IMAGE}:${GHC_VERSION}
COPY scripts/*.sh /usr/bin/
CMD ["start.sh"]
version: '3.9'
services:
ssi:
build:
context: .
args:
- IMAGE=${IMAGE}
- GHC_VERSION=${GHC_VERSION}
image: ssi
container_name: ssi
network_mode: host
userns_mode: host
volumes:
- ${PREFIX:-/usr/local}:/tmp${PREFIX:-/usr/local}
environment:
- CABAL_VERSION_BUILD=${CABAL_VERSION}
- STACK_VERSION_BUILD=${STACK_VERSION}
- PREFIX=${PREFIX:-/usr/local}
- MODE=${MODE:-install}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment