feat(docker): basic

This commit is contained in:
Kasper Juul Hermansen 2022-08-21 14:57:32 +02:00
commit 5765db3d90
Signed by: kjuulh
GPG Key ID: 0F95C140730F2F23
4 changed files with 20 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.cuddle/

7
cuddle.yaml Normal file
View File

@ -0,0 +1,7 @@
# yaml-language-server: $schema=https://git.front.kjuulh.io/kjuulh/cuddle/raw/branch/main/schemas/base.json
base: true
scripts:
build_docker:
type: shell

5
scripts/build_docker.sh Executable file
View File

@ -0,0 +1,5 @@
#!/bin/bash
set -e
docker build -f $TMP/build_docker.Dockerfile .

View File

@ -0,0 +1,7 @@
FROM node
RUN npx semantic-release@18
COPY . .
RUN npx semantic-release