diff --git a/Containerfile b/Containerfile index 1f48a92..1bd2e8a 100644 --- a/Containerfile +++ b/Containerfile @@ -1,5 +1,5 @@ # Base on latest (edge) alpine image -FROM node:current-alpine:20.9.0-alpine as builder +FROM node: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:20.9.0-alpine +FROM node:20.9.0-alpine LABEL maintainer="docker@ervine.org" WORKDIR /usr/src/app ENV NODE_ENV=production