mirror of
https://ops.gitlab.net/gitlab-org/gitlab-build-images.git
synced 2025-12-09 10:02:56 +01:00
10 lines
205 B
Docker
10 lines
205 B
Docker
FROM node:16.16-alpine3.16
|
|
|
|
RUN apk update \
|
|
&& apk add --no-cache git
|
|
|
|
RUN npm install --location=global npm \
|
|
&& npm install --location=global apollo@2.33.9
|
|
|
|
ENTRYPOINT ["apollo"]
|
|
CMD ["--help"]
|