docker-images/gitea-runner/NodeLatestDockerfile
Liam decfe7d781
All checks were successful
Publish Docker Image / docker (push) Successful in 1m35s
remove node install as we're copying it
2023-10-15 01:27:58 +01:00

13 lines
373 B
Plaintext

# Latest official NodeJS image
FROM node:current-alpine AS node
FROM docker:latest
# Copy Node from the official docker image
COPY --from=node /usr/lib /usr/lib
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 packages
RUN apk add --no-cache curl wget git bash