diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index c85d72a..0000000 --- a/Dockerfile +++ /dev/null @@ -1,21 +0,0 @@ -FROM haskell:9.12.2-slim-bookworm - -ARG UID=1000 -ARG GID=1000 - -RUN groupadd -g ${GID} saundersp \ - && useradd -l -m -u "${UID}" -g "${GID}" saundersp - -USER saundersp - -WORKDIR /home/saundersp/haskell_playground - -RUN cabal update - -COPY app app -COPY haskell-playground.cabal . - -RUN cabal build - -ENTRYPOINT ["cabal"] -CMD ["run"] diff --git a/docker-compose.yaml b/docker-compose.yaml deleted file mode 100644 index 63aec66..0000000 --- a/docker-compose.yaml +++ /dev/null @@ -1,11 +0,0 @@ -services: - haskell-playground: - image: saundersp/haskell-playground - pull_policy: never - build: - args: - UID: ${UID:-1000} - GID: ${GID:-1000} - user: ${UID:-1000}:${GID:-1000} - volumes: - - ./:/home/saundersp/haskell_playground