Skip to content

Commit 31eeed3

Browse files
committed
initial skeleton
0 parents  commit 31eeed3

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

Makefile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
PROJECT_ROOT = $(dir $(abspath $(lastword $(MAKEFILE_LIST))))
2+
DOCKER_IMAGE ?= lambci/lambda-base-2:build
3+
ENTRYPOINT ?= /bin/bash
4+
RUN:=docker run -it --rm -v $(PROJECT_ROOT)src:/src --entrypoint $(ENTRYPOINT) -t $(DOCKER_IMAGE)
5+
6+
run:
7+
$(RUN) /src/run.sh
8+

src/run.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
3+
echo "running from source"

0 commit comments

Comments
 (0)