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

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

parents 11fb9834 ef064e94
No related branches found
No related tags found
No related merge requests found
Pipeline #122829 canceled
...@@ -4,7 +4,7 @@ stages: ...@@ -4,7 +4,7 @@ stages:
- build - build
default: default:
image: nikolaik/python-nodejs:python3.11-nodejs19-alpine image: registry.graphpolaris.com/library/frontend-builder:latest
cache: &cache cache: &cache
key: key:
files: files:
...@@ -16,12 +16,6 @@ default: ...@@ -16,12 +16,6 @@ default:
- ./libs/shared/node_modules/ - ./libs/shared/node_modules/
policy: pull 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: install:js:
stage: prepare stage: prepare
interruptible: true 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