Sign inSign up

dxjoke/docker-angular-ci-build

By dxjoke

Updated almost 8 years ago

For angular cli builds on gitlab

Image
0

2.6K

dxjoke/docker-angular-ci-build repository overview

Docker container for building frontend

Docker container having all you need to build your angular cli app on the CI server.

docker pull dxjoke/docker-angular-ci-build

Gitlab CI

image: dxjoke/docker-angular-ci-build
stages:
  - build
  - test
  
before_script:
  - npm install
  
app-build:
  stage: build
  artifacts:
    paths:
      - dist/
  script:
    - npm run build

unit-tests:
  stage: test
  script:
    - npm test

Tag summary

Content type

Image

Digest

Size

-

Last updated

almost 8 years ago

docker pull dxjoke/docker-angular-ci-build