Files

22 lines
344 B
Docker
Raw Permalink Normal View History

FROM node:22-alpine
2025-04-13 10:20:27 +08:00
ENV CI=true
ENV TZ=Asia/Shanghai
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime \
&& echo $TZ > /etc/timezone \
&& apk add --no-cache \
2025-08-17 07:18:16 +08:00
bash \
file \
patch \
python3 \
openssl \
squashfs-tools
WORKDIR /app
COPY . .
RUN npm install
CMD ["npm", "run", "build"]