refs #5541 Fixes: deploy, package, image tag
gitea/mylogger/pipeline/head There was a failure building this commit Details

This commit is contained in:
Juan Ferrer 2023-04-11 12:04:33 +02:00
parent bbb68ebb22
commit 579941ef46
3 changed files with 14 additions and 2 deletions

View File

@ -11,7 +11,7 @@ RUN apt-get update \
gnupg2 \ gnupg2 \
git \ git \
&& curl -fsSL https://deb.nodesource.com/setup_14.x | bash - \ && curl -fsSL https://deb.nodesource.com/setup_14.x | bash - \
&& apt-get install -y --no-install-recommends nodejs \ && apt-get install -y --no-install-recommends nodejs npm \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
# MyLogger # MyLogger

View File

@ -1,7 +1,7 @@
version: '3.7' version: '3.7'
services: services:
main: main:
image: registry.verdnatura.es/mylogger image: registry.verdnatura.es/mylogger:${VERSION}-${BUILD_ID}
build: build:
context: . context: .
dockerfile: Dockerfile dockerfile: Dockerfile

View File

@ -1,4 +1,16 @@
{ {
"name": "mylogger",
"version": "0.1.0",
"author": "Verdnatura Levante SL",
"description": "MySQL and MariaDB logger using binary log",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://gitea.verdnatura.es/verdnatura/mylogger.git"
},
"engines": {
"node": ">=14"
},
"dependencies": { "dependencies": {
"colors": "^1.4.0", "colors": "^1.4.0",
"mysql2": "^2.3.3", "mysql2": "^2.3.3",