diff options
author | Alex Auvolat <alex@adnab.me> | 2022-08-24 15:42:47 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2022-08-24 15:42:47 +0200 |
commit | 2e8923b383eb06c53261eee8e5c442b857fb67e4 (patch) | |
tree | 0ad148f75f7b54dfed2dbac8f43f6df9badc502a /app/cryptpad/build/docker.nix | |
parent | 9848f3090f77363a2fda0f9fa673ebcf1fb8228c (diff) | |
download | nixcfg-2e8923b383eb06c53261eee8e5c442b857fb67e4.tar.gz nixcfg-2e8923b383eb06c53261eee8e5c442b857fb67e4.zip |
Move app files into cluster subdirectories; add prod garage
Diffstat (limited to 'app/cryptpad/build/docker.nix')
-rw-r--r-- | app/cryptpad/build/docker.nix | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/app/cryptpad/build/docker.nix b/app/cryptpad/build/docker.nix deleted file mode 100644 index 168963d..0000000 --- a/app/cryptpad/build/docker.nix +++ /dev/null @@ -1,11 +0,0 @@ -let - common = import ./common.nix; - pkgs = import common.pkgsSrc {}; - app = import ./default.nix; -in - pkgs.dockerTools.buildLayeredImage { - name = "superboum/cryptpad"; - config = { - Cmd = [ "${app}/bin/cryptpad" ]; - }; - } |