gitlab-build-images/Dockerfile.apollo
2022-08-02 11:05:44 +02:00

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"]