Initial commit

This commit is contained in:
Stephan Stanisic 2022-06-13 16:07:44 +02:00
commit c49c4dbaaa
2 changed files with 21 additions and 0 deletions

16
.drone.yml Normal file
View File

@ -0,0 +1,16 @@
---
kind: pipeline
type: docker
name: default
steps:
- name: tag (latest)
image: plugins/docker
settings:
registry: auth.registry.steph.tools
username: drone
password:
from_secret: REGISTRY_PASS
repo: auth.registry.steph.tools/bewegend-leren/hdoc
tags:
- latest

5
Dockerfile Normal file
View File

@ -0,0 +1,5 @@
FROM nixos/nix
RUN nix-channel --update
RUN nix-env -iA nixpkgs.nixFlakes
RUN echo "experimental-features = nix-command flakes" >> /etc/nix/nix.conf
RUN nix profile install 'git+https://github.com/hdoc/hdoc.git'