'update files with ansible'

This commit is contained in:
git 2023-10-30 15:03:38 +00:00
parent 0ec0085bb0
commit 3efea65865

View File

@ -1,5 +1,5 @@
# Base on latest (edge) alpine image # 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 && \ 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 && \ 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 tar zxvf /tmp/wetty.tar.gz -C /tmp
@ -10,7 +10,7 @@ RUN mv /tmp/wetty-2.7.0/* . && \
yarn build && \ yarn build && \
yarn install --production --ignore-scripts --prefer-offline yarn install --production --ignore-scripts --prefer-offline
FROM node:current-alpine FROM node:current-alpine:20.9.0-alpine
LABEL maintainer="docker@ervine.org" LABEL maintainer="docker@ervine.org"
WORKDIR /usr/src/app WORKDIR /usr/src/app
ENV NODE_ENV=production ENV NODE_ENV=production