mirror of
https://github.com/tfausak/witch.git
synced 2024-11-23 00:06:27 +03:00
6 lines
149 B
Docker
6 lines
149 B
Docker
FROM haskell:9.0.1
|
|
ARG USER=haskell
|
|
RUN useradd --create-home --shell "$( which bash )" "$USER"
|
|
USER "$USER"
|
|
ENV PATH="/home/$USER/.cabal/bin:$PATH"
|