mirror of
https://github.com/Arlind-dev/sulej.ch.git
synced 2025-12-01 17:35:14 +01:00
chore(deps): pin versions and setup dependabot for Dockerfile (#21)
This commit is contained in:
6
.github/dependabot.yml
vendored
6
.github/dependabot.yml
vendored
@@ -14,3 +14,9 @@ updates:
|
|||||||
schedule:
|
schedule:
|
||||||
interval: "daily"
|
interval: "daily"
|
||||||
open-pull-requests-limit: 10
|
open-pull-requests-limit: 10
|
||||||
|
|
||||||
|
- package-ecosystem: "docker"
|
||||||
|
directory: "/"
|
||||||
|
schedule:
|
||||||
|
interval: "daily"
|
||||||
|
open-pull-requests-limit: 10
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
ARG BUILD_IMAGE=ghcr.io/arlind-dev/sulej.ch:build-latest
|
ARG BUILD_IMAGE=ghcr.io/arlind-dev/sulej.ch:build-latest
|
||||||
FROM --platform=$BUILDPLATFORM ${BUILD_IMAGE} AS build
|
FROM --platform=$BUILDPLATFORM ${BUILD_IMAGE} AS build
|
||||||
|
|
||||||
FROM nginx:alpine
|
FROM nginx:1.29.2-alpine3.22
|
||||||
|
|
||||||
ARG BUILD_IMAGE
|
ARG BUILD_IMAGE
|
||||||
|
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
FROM node:alpine AS build
|
FROM node:22.11.0-alpine3.20 AS build
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
RUN npm install -g --force corepack && corepack enable && corepack prepare pnpm@latest --activate
|
RUN npm install -g --force corepack \
|
||||||
|
&& corepack enable
|
||||||
|
|
||||||
COPY package.json pnpm-lock.yaml ./
|
COPY package.json pnpm-lock.yaml ./
|
||||||
RUN pnpm install --frozen-lockfile
|
RUN pnpm install --frozen-lockfile
|
||||||
|
|||||||
Reference in New Issue
Block a user