Skip to content

Commit 36d6b1b

Browse files
committed
Rename the output folder to avoid confusion
1 parent ef7ce8e commit 36d6b1b

7 files changed

+11
-11
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ You can build everything locally (requirements: `make` and Docker):
2727
make layers
2828
```
2929

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`.
3131

3232
Then, run the automated tests:
3333

cpu-arm.Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ layers: docker-images
3030
docker-compose build --parallel php-80-zip
3131
docker-compose build --parallel php-80-zip-fpm
3232

33-
# Run the zip containers: the layers will be copied to `./layers/`
33+
# Run the zip containers: the layers will be copied to `./output/`
3434
docker-compose up php-80-zip \
3535
php-80-zip-fpm
3636
# Clean up containers
@@ -68,7 +68,7 @@ test:
6868

6969
clean:
7070
# Remove zip files
71-
rm -f layers/arm-*.zip
71+
rm -f output/arm-*.zip
7272
# Clean Docker images to force rebuilding them
7373
docker image rm --force bref/arm-fpm-internal-src
7474
docker image rm --force bref/arm-php-80

cpu-x86.Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ layers: docker-images
3030
docker-compose build --parallel php-80-zip php-81-zip
3131
docker-compose build --parallel php-80-zip-fpm php-81-zip-fpm
3232

33-
# Run the zip containers: the layers will be copied to `./layers/`
33+
# Run the zip containers: the layers will be copied to `./output/`
3434
docker-compose up php-80-zip php-81-zip \
3535
php-80-zip-fpm php-81-zip-fpm
3636
# Clean up containers
@@ -74,7 +74,7 @@ test:
7474

7575
clean:
7676
# Remove zip files
77-
rm -f layers/*.zip
77+
rm -f output/*.zip
7878
# Clean Docker images to force rebuilding them
7979
docker image rm --force bref/fpm-internal-src
8080
docker image rm --force bref/php-80

docker-compose.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ services:
2020
entrypoint: /bin/cp
2121
command: ["/tmp/layer.zip", "/tmp/bref-zip/${CPU_PREFIX}php-80.zip"]
2222
volumes:
23-
- ./layers:/tmp/bref-zip
23+
- ./output:/tmp/bref-zip
2424

2525

2626
php-80-fpm:
@@ -39,7 +39,7 @@ services:
3939
entrypoint: /bin/cp
4040
command: ["/tmp/layer.zip", "/tmp/bref-zip/${CPU_PREFIX}php-80-fpm.zip"]
4141
volumes:
42-
- ./layers:/tmp/bref-zip
42+
- ./output:/tmp/bref-zip
4343

4444
#### PHP 8.1
4545

@@ -59,7 +59,7 @@ services:
5959
entrypoint: /bin/cp
6060
command: ["/tmp/layer.zip", "/tmp/bref-zip/${CPU_PREFIX}php-81.zip"]
6161
volumes:
62-
- ./layers:/tmp/bref-zip
62+
- ./output:/tmp/bref-zip
6363

6464

6565
php-81-fpm:
@@ -78,4 +78,4 @@ services:
7878
entrypoint: /bin/cp
7979
command: ["/tmp/layer.zip", "/tmp/bref-zip/${CPU_PREFIX}php-81-fpm.zip"]
8080
volumes:
81-
- ./layers:/tmp/bref-zip
81+
- ./output:/tmp/bref-zip

lambda-publish/docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ services:
1010
volumes:
1111
- ./publish.sh:/publish.sh
1212
- ~/.aws:/root/.aws
13-
- ./layers:/tmp/bref-zip
13+
- ./output:/tmp/bref-zip

lambda-publish/publish.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ VERSION=$(aws lambda publish-layer-version \
3333
--layer-name $LAYER_NAME \
3434
--description "Bref PHP Runtime" \
3535
--license-info MIT \
36-
--zip-file fileb://../layers/$LAYER_NAME.zip \
36+
--zip-file fileb://../output/$LAYER_NAME.zip \
3737
--compatible-runtimes provided.al2 \
3838
--output text \
3939
--query Version)
File renamed without changes.

0 commit comments

Comments
 (0)