build: clean up dockerfile and use clean-install

This commit is contained in:
dumbmoron
2024-05-22 10:21:38 +00:00
parent 701182d753
commit 3197cee473

View File

@@ -3,9 +3,10 @@ WORKDIR /app
COPY package*.json ./ COPY package*.json ./
RUN apt-get update && \ RUN apt-get update && \
apt-get install -y git python3 build-essential && \ apt-get install -y git python3 build-essential && \
npm install && \ npm ci && \
npm cache clean --force && \
apt purge --autoremove -y python3 build-essential && \ apt purge --autoremove -y python3 build-essential && \
rm -rf ~/.cache/ /var/lib/apt/lists/* rm -rf ~/.cache/ /var/lib/apt/lists/*