Skip to content

Commit 3de9d54

Browse files
committed
Fixed permissions for lambda_build_tar
1 parent f152f14 commit 3de9d54

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

Dockerfile-2.7

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ LABEL maintainer="Kilna [email protected]"
33
RUN pip install python-lambda &&\
44
mkdir /lambda
55
COPY bin/* /usr/local/bin/
6+
RUN chmod +x /usr/local/bin/lambda_*
67
WORKDIR /lambda
78
ONBUILD COPY . /lambda
89
ONBUILD RUN pip install -r requirements.txt &&\

Dockerfile-3.6

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ LABEL maintainer="Kilna [email protected]"
33
RUN pip install python-lambda &&\
44
mkdir /lambda
55
COPY bin/* /usr/local/bin/
6+
RUN chmod +x /usr/local/bin/lambda_*
67
WORKDIR /lambda
78
ONBUILD COPY . /lambda
89
ONBUILD RUN pip install -r requirements.txt &&\

0 commit comments

Comments
 (0)