File tree 7 files changed +11
-11
lines changed
7 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ You can build everything locally (requirements: `make` and Docker):
27
27
make layers
28
28
```
29
29
30
- This will create the Docker images on your machine, and generate the Lambda layer zip files in ` ./layers ` .
30
+ This will create the Docker images on your machine, and generate the Lambda layer zip files in ` ./output ` .
31
31
32
32
Then, run the automated tests:
33
33
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ layers: docker-images
30
30
docker-compose build --parallel php-80-zip
31
31
docker-compose build --parallel php-80-zip-fpm
32
32
33
- # Run the zip containers: the layers will be copied to `./layers /`
33
+ # Run the zip containers: the layers will be copied to `./output /`
34
34
docker-compose up php-80-zip \
35
35
php-80-zip-fpm
36
36
# Clean up containers
68
68
69
69
clean :
70
70
# Remove zip files
71
- rm -f layers /arm-* .zip
71
+ rm -f output /arm-* .zip
72
72
# Clean Docker images to force rebuilding them
73
73
docker image rm --force bref/arm-fpm-internal-src
74
74
docker image rm --force bref/arm-php-80
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ layers: docker-images
30
30
docker-compose build --parallel php-80-zip php-81-zip
31
31
docker-compose build --parallel php-80-zip-fpm php-81-zip-fpm
32
32
33
- # Run the zip containers: the layers will be copied to `./layers /`
33
+ # Run the zip containers: the layers will be copied to `./output /`
34
34
docker-compose up php-80-zip php-81-zip \
35
35
php-80-zip-fpm php-81-zip-fpm
36
36
# Clean up containers
74
74
75
75
clean :
76
76
# Remove zip files
77
- rm -f layers /* .zip
77
+ rm -f output /* .zip
78
78
# Clean Docker images to force rebuilding them
79
79
docker image rm --force bref/fpm-internal-src
80
80
docker image rm --force bref/php-80
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ services:
20
20
entrypoint : /bin/cp
21
21
command : ["/tmp/layer.zip", "/tmp/bref-zip/${CPU_PREFIX}php-80.zip"]
22
22
volumes :
23
- - ./layers :/tmp/bref-zip
23
+ - ./output :/tmp/bref-zip
24
24
25
25
26
26
php-80-fpm :
@@ -39,7 +39,7 @@ services:
39
39
entrypoint : /bin/cp
40
40
command : ["/tmp/layer.zip", "/tmp/bref-zip/${CPU_PREFIX}php-80-fpm.zip"]
41
41
volumes :
42
- - ./layers :/tmp/bref-zip
42
+ - ./output :/tmp/bref-zip
43
43
44
44
# ### PHP 8.1
45
45
@@ -59,7 +59,7 @@ services:
59
59
entrypoint : /bin/cp
60
60
command : ["/tmp/layer.zip", "/tmp/bref-zip/${CPU_PREFIX}php-81.zip"]
61
61
volumes :
62
- - ./layers :/tmp/bref-zip
62
+ - ./output :/tmp/bref-zip
63
63
64
64
65
65
php-81-fpm :
@@ -78,4 +78,4 @@ services:
78
78
entrypoint : /bin/cp
79
79
command : ["/tmp/layer.zip", "/tmp/bref-zip/${CPU_PREFIX}php-81-fpm.zip"]
80
80
volumes :
81
- - ./layers :/tmp/bref-zip
81
+ - ./output :/tmp/bref-zip
Original file line number Diff line number Diff line change @@ -10,4 +10,4 @@ services:
10
10
volumes :
11
11
- ./publish.sh:/publish.sh
12
12
- ~/.aws:/root/.aws
13
- - ./layers :/tmp/bref-zip
13
+ - ./output :/tmp/bref-zip
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ VERSION=$(aws lambda publish-layer-version \
33
33
--layer-name $LAYER_NAME \
34
34
--description " Bref PHP Runtime" \
35
35
--license-info MIT \
36
- --zip-file fileb://../layers /$LAYER_NAME .zip \
36
+ --zip-file fileb://../output /$LAYER_NAME .zip \
37
37
--compatible-runtimes provided.al2 \
38
38
--output text \
39
39
--query Version)
File renamed without changes.
You can’t perform that action at this time.
0 commit comments