-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlambdaBuilder.yml
33 lines (28 loc) · 916 Bytes
/
lambdaBuilder.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
version: '3'
services:
fargaterunner:
build: ./fargaterunner
command: bash -c 'go build github.com/user/fargaterunner && zip fargaterunner ./fargaterunner && rm fargaterunner'
volumes:
- ./fargaterunner:/go/src/github.com/user/fargaterunner
clipfinder:
build: ./clipfinder
command: bash -c "go build github.com/user/clipfinder && zip clipfinder ./clipfinder && cp clipfinder ./bin && rm clipfinder"
volumes:
- ./clipfinder:/go/src/github.com/user/clipfinder
clipscraper:
build: ./clipscraper
command: bash -c "npm install && zip -r clipscraper.zip ."
volumes:
- ./clipscraper:/app
environment:
PUPPETEER_SKIP_CHROMIUM_DOWNLOAD: "true"
logging:
driver: none
archiver:
build: ./archiver
command: bash -c "npm install && zip -r archiver.zip ."
volumes:
- ./archiver:/app
logging:
driver: none