From cd1f327ea37198912df05633ac3075124818accd Mon Sep 17 00:00:00 2001 From: Stille Date: Mon, 11 Dec 2023 13:04:56 +0800 Subject: [PATCH] update nali && linux-command --- linux-command/Dockerfile | 4 ++-- nali/Dockerfile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/linux-command/Dockerfile b/linux-command/Dockerfile index 8854a41..f4d8b10 100644 --- a/linux-command/Dockerfile +++ b/linux-command/Dockerfile @@ -1,4 +1,4 @@ -FROM node:14-alpine as builder +FROM node:alpine3.18 as builder LABEL maintainer="Stille " WORKDIR / @@ -7,7 +7,7 @@ RUN apk add --no-cache git RUN git clone https://github.com/jaywcjlove/linux-command --depth=1 \ && cd linux-command \ && npm install \ - && npm build \ + && npm run build \ && npm run dash FROM nginx:stable-alpine diff --git a/nali/Dockerfile b/nali/Dockerfile index 1caa450..54cfc19 100644 --- a/nali/Dockerfile +++ b/nali/Dockerfile @@ -1,6 +1,6 @@ FROM golang:alpine as builder -ENV VERSION 0.8.0 +ENV VERSION 0.8.1 RUN apk add --no-cache make git RUN git clone --depth 1 https://github.com/zu1k/nali /nali-src