We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ed2fa8 commit 8daaf90Copy full SHA for 8daaf90
hack/make.sh
@@ -77,6 +77,7 @@ make_publish() {
77
if [[ "${VERSION}" != "tip" ]]; then
78
for BUILDER in "${BUILDERS[@]}"; do
79
TO_PUSH+=("$(builder_to_img "${BUILDER}" "latest")")
80
+ docker tag "$(builder_to_img "${BUILDER}" "${VERSION}")" "$(builder_to_img "${BUILDER}" "latest")"
81
done
82
fi
83
stacks/nodejs/run/Dockerfile
@@ -7,7 +7,7 @@ LABEL io.buildpacks.stack.id=${stack_id}
7
8
USER root
9
RUN microdnf module enable -y nodejs:16/minimal && \
10
- microdnf install --nodocs -y tar
+ microdnf install --nodocs -y tar node
11
USER cnb
12
13
ENV NODE_PATH $HOME/node_modules
0 commit comments