Add dockerignore, Dockerfile cleanup

pull/4/head
teutat3s 2022-10-20 18:17:02 +02:00
parent b33391ff37
commit 3a540ece06
Signed by: teutat3s
GPG Key ID: 4FA1D3FA524F22C1
3 changed files with 6 additions and 10 deletions

5
.dockerignore Normal file
View File

@ -0,0 +1,5 @@
tags
.direnv
_site
docker-compose.yml
Dockerfile

View File

@ -1,4 +1,4 @@
FROM denoland/deno:alpine-1.26.1
FROM denoland/deno:alpine-1.26.2
WORKDIR /site
COPY . .

View File

@ -1,9 +0,0 @@
let
unstable = import (fetchTarball https://github.com/nixos/nixpkgs/archive/nixos-unstable.tar.gz) { };
in
{ nixpkgs ? import <nixpkgs> {} }:
with nixpkgs; mkShell {
buildInputs = [
];
}