srvrls 0.1.7

A lightweight, opinionated serverless framework reducing boilerplate
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
version: 0.2

phases:
  install:
    commands:
      - nohup /usr/local/bin/dockerd --host=unix:///var/run/docker.sock --host=tcp://127.0.0.1:2375 --storage-driver=overlay2&
      - timeout 15 sh -c "until docker info; do echo .; sleep 1; done"
  pre_build:
    commands:
      - docker build -t srvrls .
  build:
    commands:
      - docker images
      - docker image inspect srvrls
      - docker run srvrls cargo build