Skip to content
Snippets Groups Projects
Commit 750078ed authored by Leonardo Christino's avatar Leonardo Christino
Browse files

Revert "Merge remote-tracking branch 'origin/main' into feat/query-builder-porting"

This reverts commit b930a175.
parent b930a175
No related branches found
No related tags found
No related merge requests found
Pipeline #122904 failed
......@@ -4,7 +4,7 @@ stages:
- build
default:
image: registry.graphpolaris.com/library/frontend-builder:latest
image: nikolaik/python-nodejs:python3.11-nodejs19-alpine
cache: &cache
key:
files:
......@@ -16,6 +16,12 @@ default:
- ./libs/shared/node_modules/
policy: pull
before_script:
- npm i -g pnpm
- pnpm config set store-dir .pnpm-store
- apk add --no-cache --virtual .build-deps build-base g++ cairo-dev jpeg-dev pango-dev giflib-dev
- apk add --no-cache --virtual .runtime-deps cairo jpeg pango giflib
install:js:
stage: prepare
interruptible: true
......
FROM nikolaik/python-nodejs:python3.11-nodejs19-alpine
RUN npm i -g pnpm
RUN pnpm config set store-dir .pnpm-store
RUN apk add --no-cache --virtual .build-deps build-base g++ cairo-dev jpeg-dev pango-dev giflib-dev
RUN apk add --no-cache --virtual .runtime-deps cairo jpeg pango giflib
\ No newline at end of file
# Builder image instructions
login to docker repo
`docker login https://registry.graphpolaris.com/`
Build image with name/tag
`docker build -t registry.graphpolaris.com/library/frontend-builder:0.0.1 - < build.dockerfile`
`docker build -t registry.graphpolaris.com/library/frontend-builder:latest - < build.dockerfile`
or change the tag
`docker tag OLDTAG registry.graphpolaris.com/library/frontend-builder:latest`
push image to repo
`docker push registry.graphpolaris.com/library/frontend-builder:latest`
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment