move to root dir
Some checks failed
Publish Docker Image / docker (push) Failing after 18s

This commit is contained in:
Lee
2023-11-29 18:58:27 +00:00
parent a1d49f064a
commit 73ad9c552b
6 changed files with 30 additions and 30 deletions

20
NodeLatestDockerfile Normal file
View File

@ -0,0 +1,20 @@
# Latest official NodeJS image
FROM node:current-alpine AS node
FROM docker:latest
WORKDIR /home/container
# Copy Node from the official docker image
COPY --from=node /usr/local/lib /usr/local/lib
COPY --from=node /usr/local/include /usr/local/include
COPY --from=node /usr/local/bin /usr/local/bin
# Install the necessary dependencies for Node.js
RUN apk add --no-cache libstdc++ libgcc
# Install other dependencies
RUN apk add --no-cache curl wget git bash
# Print the version of NodeJS we're running
RUN node --version