@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 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
 
@@ -1,6 +1,6 @@
1
1
  FROM nginx:1.19 AS development
2
2
 
3
- MAINTAINER Mike Mellor
3
+ LABEL org.opencontainers.image.authors="Mike Mellor <mike.mellor@avalerehealth.com>"
4
4
 
5
5
  # Copy nginx conf
6
6
  COPY ./nginx.conf /etc/nginx/conf.d/default.conf
package/core/0/Dockerfile CHANGED
@@ -1,6 +1,6 @@
1
1
  FROM ubuntu:20.04
2
2
 
3
- MAINTAINER Mike Mellor
3
+ LABEL org.opencontainers.image.authors="Mike Mellor <mike.mellor@avalerehealth.com>"
4
4
 
5
5
  # Silences bash no tty warning
6
6
  RUN echo '#! /bin/sh' > /usr/bin/mesg
@@ -1,5 +1,8 @@
1
1
  ## Changelog
2
2
 
3
+ ### 1.4.1 (2024-07-17)
4
+ * [fix] set global var for git across file system so git avail in mounted volumes i.e node_modules
5
+
3
6
  ### 1.4.0 (2024-06-04)
4
7
  * [feat] bumped node from 18 to 20
5
8
 
package/core/1/Dockerfile CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  FROM node:20.6 AS alpine
6
6
 
7
- MAINTAINER Mike Mellor
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 true
44
- ENV PUPPETEER_EXECUTABLE_PATH /usr/bin/chromium
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "core",
3
- "version": "1.4.0",
3
+ "version": "1.4.1",
4
4
  "description": "lab-env docker config for the @fishawack/core/1 npm module",
5
5
  "scripts": {
6
6
  "preversion": "docker login",
@@ -1,6 +1,6 @@
1
1
  FROM httpd:2.4.54 AS development
2
2
 
3
- MAINTAINER Mike Mellor
3
+ LABEL org.opencontainers.image.authors="Mike Mellor <mike.mellor@avalerehealth.com>"
4
4
 
5
5
  # Copy nginx conf
6
6
  COPY ./httpd.conf /usr/local/apache2/conf/httpd.conf
@@ -1,6 +1,6 @@
1
1
  FROM chialab/php:7.4-fpm AS development
2
2
 
3
- MAINTAINER Mike Mellor
3
+ LABEL org.opencontainers.image.authors="Mike Mellor <mike.mellor@avalerehealth.com>"
4
4
 
5
5
  # Install ghostscript
6
6
  RUN apt-get update && \
@@ -1,6 +1,6 @@
1
1
  FROM httpd:2.4.54 AS development
2
2
 
3
- MAINTAINER Mike Mellor
3
+ LABEL org.opencontainers.image.authors="Mike Mellor <mike.mellor@avalerehealth.com>"
4
4
 
5
5
  # Copy nginx conf
6
6
  COPY ./httpd.conf /usr/local/apache2/conf/httpd.conf
@@ -1,6 +1,6 @@
1
1
  FROM chialab/php:8.1-fpm AS development
2
2
 
3
- MAINTAINER Mike Mellor
3
+ LABEL org.opencontainers.image.authors="Mike Mellor <mike.mellor@avalerehealth.com>"
4
4
 
5
5
  # Install ghostscript
6
6
  RUN apt-get update && \
@@ -1,6 +1,6 @@
1
1
  FROM nginx:1.19 AS development
2
2
 
3
- MAINTAINER Mike Mellor
3
+ LABEL org.opencontainers.image.authors="Mike Mellor <mike.mellor@avalerehealth.com>"
4
4
 
5
5
  # Copy nginx conf
6
6
  COPY ./nginx.conf /etc/nginx/conf.d/default.conf
@@ -1,6 +1,6 @@
1
1
  FROM chialab/php:7.4-fpm AS development
2
2
 
3
- MAINTAINER Mike Mellor
3
+ LABEL org.opencontainers.image.authors="Mike Mellor <mike.mellor@avalerehealth.com>"
4
4
 
5
5
  # Install ghostscript
6
6
  RUN apt-get update && \
@@ -1,6 +1,6 @@
1
1
  FROM chialab/php:8.1-fpm AS development
2
2
 
3
- MAINTAINER Mike Mellor
3
+ LABEL org.opencontainers.image.authors="Mike Mellor <mike.mellor@avalerehealth.com>"
4
4
 
5
5
  # Install ghostscript
6
6
  RUN apt-get update && \
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fishawack/lab-env",
3
- "version": "4.33.1",
3
+ "version": "4.33.2",
4
4
  "description": "Docker manager for FW",
5
5
  "main": "cli.js",
6
6
  "scripts": {
@@ -1,6 +1,6 @@
1
1
  FROM wordpress:5.7.2 AS development
2
2
 
3
- MAINTAINER Mike Mellor
3
+ LABEL org.opencontainers.image.authors="Mike Mellor <mike.mellor@avalerehealth.com>"
4
4
 
5
5
  # Install mysql client
6
6
  RUN apt-get update && \
@@ -1,6 +1,6 @@
1
1
  FROM httpd:2.4.54 AS development
2
2
 
3
- MAINTAINER Mike Mellor
3
+ LABEL org.opencontainers.image.authors="Mike Mellor <mike.mellor@avalerehealth.com>"
4
4
 
5
5
  # Copy nginx conf
6
6
  COPY ./httpd.conf /usr/local/apache2/conf/httpd.conf
@@ -1,6 +1,6 @@
1
1
  FROM chialab/php:8.1-fpm AS development
2
2
 
3
- MAINTAINER Mike Mellor
3
+ LABEL org.opencontainers.image.authors="Mike Mellor <mike.mellor@avalerehealth.com>"
4
4
 
5
5
  # Install ghostscript
6
6
  RUN apt-get update && \