From 7c3d7a24007200d8e41bae3cb3f278e0ec839dc7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anders=20Br=C3=A5then=20Nomerstad?= Date: Mon, 27 Nov 2023 13:05:54 +0100 Subject: [PATCH] Oppdaterer baseimage + checkout action --- .github/workflows/on-push-to-master.yml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/on-push-to-master.yml b/.github/workflows/on-push-to-master.yml index c44c4cb..c92bb88 100644 --- a/.github/workflows/on-push-to-master.yml +++ b/.github/workflows/on-push-to-master.yml @@ -13,7 +13,7 @@ jobs: id-token: write steps: - name: Checkout repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install dependencies run: npm ci - name: Build and push docker image diff --git a/Dockerfile b/Dockerfile index f204177..c908d2f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:11.7.0 +FROM node:20-alpine RUN ln -fs /usr/share/zoneinfo/Europe/Oslo /etc/localtime ENV NODE_ENV production