xianbao's picture
Update Dockerfile
251c3c9 verified
raw
history blame contribute delete
286 Bytes
FROM node:19-slim
RUN apt-get update && \
apt-get install -y \
bash \
git git-lfs \
wget curl procps \
htop vim nano && \
rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY --link --chown=1000 ./ /app
RUN npm install
RUN npm ci
CMD ["node", "index.mjs"]