Updated Dockerfile base image and fixed runtime permissions

This commit is contained in:
saundersp
2025-01-19 22:42:53 +01:00
parent 66bcee129b
commit 65f3525ffd
3 changed files with 19 additions and 5 deletions

View File

@ -2,6 +2,10 @@ services:
haskell-playground:
image: saundersp/haskell-playground
pull_policy: never
build: .
build:
args:
UID: ${UID:-1000}
GID: ${GID:-1000}
user: ${UID:-1000}:${GID:-1000}
volumes:
- ./:/home/saundersp/haskell_playground