-
Notifications
You must be signed in to change notification settings - Fork 13
/
Dockerfile
32 lines (27 loc) · 1.38 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
FROM dockershelf/debian:sid
ARG BUILD_DATE
ARG VCS_REF
ARG VERSION
LABEL org.label-schema.build-date=${BUILD_DATE} \
org.label-schema.name="node20" \
org.label-schema.description="A Node 20 image based on Debian sid" \
org.label-schema.url="https://github.com/Dockershelf/dockershelf" \
org.label-schema.vcs-ref=${VCS_REF} \
org.label-schema.vcs-url="https://github.com/Dockershelf/dockershelf" \
org.label-schema.vendor="Luis Alejandro Martínez Faneyth" \
org.label-schema.version=${VERSION} \
org.label-schema.schema-version="1.0.0-rc.1" \
org.opencontainers.image.created=${BUILD_DATE} \
org.opencontainers.image.title="node20" \
org.opencontainers.image.description="An Node 20 image based on Debian sid" \
org.opencontainers.image.url="https://github.com/Dockershelf/dockershelf" \
org.opencontainers.image.revision=${VCS_REF} \
org.opencontainers.image.source="https://github.com/Dockershelf/dockershelf" \
org.opencontainers.image.vendor="Luis Alejandro Martínez Faneyth" \
org.opencontainers.image.version=${VERSION} \
org.opencontainers.image.licenses="GPL-3.0" \
maintainer="Luis Alejandro Martínez Faneyth <[email protected]>"
ENV NODE_VER_NUM="20"
COPY build-image.sh library.sh /usr/share/dockershelf/node/
RUN bash /usr/share/dockershelf/node/build-image.sh
CMD ["/bin/bash"]