From 3efea658654e8dda46ee7ed19b9a8e1a58f0cc55 Mon Sep 17 00:00:00 2001 From: git Date: Mon, 30 Oct 2023 15:03:38 +0000 Subject: [PATCH] 'update files with ansible' --- Containerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Containerfile b/Containerfile index 69ad73a..1f48a92 100644 --- a/Containerfile +++ b/Containerfile @@ -1,5 +1,5 @@ # Base on latest (edge) alpine image -FROM node:current-alpine as builder +FROM node:current-alpine:20.9.0-alpine as builder RUN apk add -U git build-base python3 curl && \ curl -L https://github.com/butlerx/wetty/archive/refs/tags/v2.7.0.tar.gz -o /tmp/wetty.tar.gz && \ tar zxvf /tmp/wetty.tar.gz -C /tmp @@ -10,7 +10,7 @@ RUN mv /tmp/wetty-2.7.0/* . && \ yarn build && \ yarn install --production --ignore-scripts --prefer-offline -FROM node:current-alpine +FROM node:current-alpine:20.9.0-alpine LABEL maintainer="docker@ervine.org" WORKDIR /usr/src/app ENV NODE_ENV=production