调整镜像,使其支持apt包管理

This commit is contained in:
aixianling
2024-10-21 10:46:07 +08:00
parent 51ab4b62bc
commit cf6c8fdb45

View File

@@ -1,7 +1,7 @@
FROM node:16-slim
LABEL authors="kubbo"
RUN apt-get update && apt-get install -y bash
RUN apt-get update && apt-get install -y apt-utils shell
COPY . /app
WORKDIR /app