We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 71c0300 + 60d4172 commit 7d641b7Copy full SHA for 7d641b7
app/Dockerfile
@@ -1,7 +1,10 @@
1
# Use the slim version of Node.js v20 on Debian Bookworm as the base image
2
FROM node:20-bookworm-slim
3
4
-RUN apt-get update && apt-get install -y curl
+RUN apt-get update -qq \
5
+ && apt-get install -y curl \
6
+ && apt-get clean \
7
+ && rm -rf /var/lib/apt/lists/*
8
9
# Set the working directory
10
WORKDIR /app
0 commit comments