@fishawack/lab-env 4.33.1 → 4.33.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +5 -0
- package/adonis/0/nginx/Dockerfile +1 -1
- package/core/0/Dockerfile +1 -1
- package/core/1/CHANGELOG.md +3 -0
- package/core/1/Dockerfile +6 -3
- package/core/1/package.json +1 -1
- package/craftcms/3/apache/Dockerfile +1 -1
- package/craftcms/3/php/Dockerfile +1 -1
- package/drupal/9/apache/Dockerfile +1 -1
- package/drupal/9/php/Dockerfile +1 -1
- package/laravel/8/nginx/Dockerfile +1 -1
- package/laravel/8/php/Dockerfile +1 -1
- package/laravel/9/php/Dockerfile +1 -1
- package/package.json +1 -1
- package/wordpress/0/Dockerfile +1 -1
- package/wordpress/1/apache/Dockerfile +1 -1
- package/wordpress/1/php/Dockerfile +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
## Changelog
|
|
2
2
|
|
|
3
|
+
### 4.33.2 (2024-07-16)
|
|
4
|
+
* [Change] Bumped fishawack/lab-env-core-1 to 1.4.1
|
|
5
|
+
* [Bug] use new ENV syntax
|
|
6
|
+
* [Bug] updating MAINTAINER syntax to new format
|
|
7
|
+
|
|
3
8
|
### 4.33.1 (2024-07-16)
|
|
4
9
|
* [Bug] allow env var for REPO to be set prior to running lab-env
|
|
5
10
|
|
package/core/0/Dockerfile
CHANGED
package/core/1/CHANGELOG.md
CHANGED
package/core/1/Dockerfile
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
FROM node:20.6 AS alpine
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
LABEL org.opencontainers.image.authors="Mike Mellor <mike.mellor@avalerehealth.com>"
|
|
8
8
|
|
|
9
9
|
ARG TARGETARCH
|
|
10
10
|
|
|
@@ -28,6 +28,9 @@ RUN rm -rf /sass.tar.gz
|
|
|
28
28
|
# Set safe directory to remove intel errors when running git rev-parse
|
|
29
29
|
RUN su node -c "git config --global --add safe.directory /app"
|
|
30
30
|
|
|
31
|
+
# Also set global git flag for allowing access across filesystems for mounted node_modules dir
|
|
32
|
+
ENV GIT_DISCOVERY_ACROSS_FILESYSTEM=1
|
|
33
|
+
|
|
31
34
|
# Disable npm message about updates being available
|
|
32
35
|
RUN su node -c "npm config set update-notifier false"
|
|
33
36
|
|
|
@@ -40,8 +43,8 @@ RUN apt-get install -y lftp
|
|
|
40
43
|
# Install chromium
|
|
41
44
|
RUN apt-get install -y chromium fonts-ipafont-gothic fonts-wqy-zenhei fonts-thai-tlwg fonts-kacst fonts-freefont-ttf libxss1 --no-install-recommends
|
|
42
45
|
# Stop Puppeteer downloading browsers during npm install
|
|
43
|
-
ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD
|
|
44
|
-
ENV PUPPETEER_EXECUTABLE_PATH
|
|
46
|
+
ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true
|
|
47
|
+
ENV PUPPETEER_EXECUTABLE_PATH=/usr/bin/chromium
|
|
45
48
|
|
|
46
49
|
# Install package.json checker
|
|
47
50
|
RUN npm install check-dependencies -g
|
package/core/1/package.json
CHANGED
package/drupal/9/php/Dockerfile
CHANGED
package/laravel/8/php/Dockerfile
CHANGED
package/laravel/9/php/Dockerfile
CHANGED
package/package.json
CHANGED
package/wordpress/0/Dockerfile
CHANGED