Set up a development container

This commit is contained in:
Taylor Fausak 2021-04-11 19:08:53 +00:00 committed by GitHub
parent ff2d41a6da
commit 53bc4f2e21
2 changed files with 9 additions and 0 deletions

4
.devcontainer/Dockerfile Normal file
View File

@ -0,0 +1,4 @@
FROM haskell:9.0.1
ARG USER=haskell
RUN useradd --create-home --shell "$( which bash )" "$USER"
USER "$USER"

View File

@ -0,0 +1,5 @@
{
"build": {
"dockerfile": "Dockerfile"
}
}