Initial docker conversion commit

This commit is contained in:
2026-02-13 16:07:02 -03:00
parent 622fe6e6fe
commit 36ff5d0c1a
17 changed files with 686 additions and 0 deletions

21
package.json Normal file
View File

@@ -0,0 +1,21 @@
{
"name": "...",
"version": "1.0.0",
"private": true,
"packageManager": "pnpm@10.29.3",
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "yamllint .woodpecker/ci.yml .woodpecker/build.yml .woodpecker/deploy.yml docker-compose.yml",
"docker:build": "docker build --platform linux/amd64 -t git.mifi.dev/.../...:latest .",
"docker:push": "docker push git.mifi.dev/.../...:latest"
},
"devDependencies": {
"prettier": "^3.4.2",
"yaml-lint": "^1.7.0"
},
"repository": {
"type": "git",
"url": "https://github.com/.../...git"
}
}