remove some dependabot groups & no alpine version to allow update (#8475)

Co-authored-by: mahula <lenzmath@posteo.de>
This commit is contained in:
Ulf Gebhardt 2025-05-03 13:51:22 +02:00 committed by GitHub
parent 43f4fd130e
commit 4f05b852af
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 3 additions and 12 deletions

View File

@ -57,19 +57,10 @@ updates:
applies-to: version-updates
patterns:
- "*apollo-server*"
babel:
applies-to: version-updates
patterns:
- "@babel*"
metascraper:
applies-to: version-updates
patterns:
- "metascraper*"
typescript:
applies-to: version-updates
patterns:
- "ts*"
- "*types?"
# webapp
- package-ecosystem: docker

View File

@ -1,4 +1,4 @@
FROM node:20.12.1-alpine3.19 AS base
FROM node:20.12.1-alpine AS base
LABEL org.label-schema.name="ocelot.social:backend"
LABEL org.label-schema.description="Backend of the Social Network Software ocelot.social"
LABEL org.label-schema.usage="https://github.com/Ocelot-Social-Community/Ocelot-Social/blob/master/README.md"

View File

@ -1,4 +1,4 @@
FROM node:20.12.1-alpine3.19 AS base
FROM node:20.12.1-alpine AS base
LABEL org.label-schema.name="ocelot.social:webapp"
LABEL org.label-schema.description="Web Frontend of the Social Network Software ocelot.social"
LABEL org.label-schema.usage="https://github.com/Ocelot-Social-Community/Ocelot-Social/blob/master/README.md"

View File

@ -8,7 +8,7 @@ LABEL org.label-schema.vendor="ocelot.social Community"
LABEL org.label-schema.schema-version="1.0"
LABEL maintainer="devops@ocelot.social"
FROM node:20.12.1-alpine3.19 AS build
FROM node:20.12.1-alpine AS build
ENV NODE_ENV="production"
RUN apk --no-cache add git python3 make g++ bash jq
RUN mkdir -p /app