Przeglądaj źródła

update nali && linux-command

Stille 1 rok temu
rodzic
commit
cd1f327ea3
2 zmienionych plików z 3 dodań i 3 usunięć
  1. 2 2
      linux-command/Dockerfile
  2. 1 1
      nali/Dockerfile

+ 2 - 2
linux-command/Dockerfile

@@ -1,4 +1,4 @@
-FROM node:14-alpine as builder
+FROM node:alpine3.18 as builder
 LABEL maintainer="Stille <[email protected]>"
 
 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

+ 1 - 1
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