Quick Install Script
This commit is contained in:
parent
8966611fa6
commit
4d2b666c84
1 changed files with 486 additions and 1 deletions
9
Makefile
9
Makefile
|
|
@ -36,4 +36,13 @@ rebuild-all: deps fetch-serverless-custom-file
|
|||
serverless-deploy.%: deps fetch-serverless-custom-file
|
||||
$(SLS_BINARY) deploy --stage $*
|
||||
|
||||
# Helper for launching a bash session on a docker image of your choice. Defaults
|
||||
# to "ubuntu:xenial".
|
||||
TARGET_IMAGE?=ubuntu:xenial
|
||||
bash:
|
||||
docker run --privileged=true -it --rm \
|
||||
-v $(CURDIR):/r-builds \
|
||||
-w /r-builds \
|
||||
${TARGET_IMAGE} /bin/bash
|
||||
|
||||
.PHONY: deps docker-build docker-push docker-down docker-build-package docker-shell-package-env ecr-login fetch-serverless-custom-file serverless-deploy
|
||||
|
|
|
|||
Loading…
Reference in a new issue