docker-images/gitea-runner/NodeLatestDockerfile
Liam 136536acd2
Some checks failed
Publish Docker Image / docker (push) Failing after 1m0s
might work? asked john
2023-10-15 01:33:10 +01:00

12 lines
338 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/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