diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..4022056 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,5 @@ +tags +.direnv +_site +docker-compose.yml +Dockerfile diff --git a/Dockerfile b/Dockerfile index 71fc136..2c755d2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM denoland/deno:alpine-1.26.1 +FROM denoland/deno:alpine-1.26.2 WORKDIR /site COPY . . diff --git a/shell.nix b/shell.nix deleted file mode 100644 index 1c825bd..0000000 --- a/shell.nix +++ /dev/null @@ -1,9 +0,0 @@ -let - unstable = import (fetchTarball https://github.com/nixos/nixpkgs/archive/nixos-unstable.tar.gz) { }; -in -{ nixpkgs ? import {} }: -with nixpkgs; mkShell { - buildInputs = [ - ]; -} -