witch/.devcontainer/Dockerfile

6 lines
149 B
Docker
Raw Normal View History

2021-04-11 22:08:53 +03:00
FROM haskell:9.0.1
ARG USER=haskell
RUN useradd --create-home --shell "$( which bash )" "$USER"
USER "$USER"
2021-04-11 22:57:59 +03:00
ENV PATH="/home/$USER/.cabal/bin:$PATH"