saberland/saber

Do you want to work on this issue?

You can request for a bounty in order to promote it!

Creating a docker image for Saber #141

egoist posted onGitHub

Would be useful if you want to build/deploy Saber app on your own VPS.


I'm not sure that a custom docker image is needed to build to saber sites. I would just use the default node images, install saber and then build it.

A few tutorials may be useful and/or templates may be helpful.

Basic config for circleci

version: 2
jobs:
  saber:
    docker:
      - image: circleci/node:10.8 # ...with this image as the primary container; this is where all `steps` will run
    steps:
      - checkout
      - run: npm install
      - run: 
          name: saber build
          command: |
            ls
            npx saber build

workflows:
  version: 2
  build_and_test:
    jobs:
      - saber

or even the base nodejs templates would be adequate.

posted by FriendlyUser over 5 years ago

Fund this Issue

$0.00
Funded
Only logged in users can fund an issue

Pull requests