witch/.devcontainer/Dockerfile
2021-04-11 19:57:59 +00:00

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"