@fishawack/lab-env 4.24.0 → 4.25.1

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,15 @@
1
1
  ## Changelog
2
2
 
3
+ ### 4.25.1 (2024-01-24)
4
+ * [Change] Bumped fishawack/lab-env-core-1 to 1.3.2
5
+
6
+ ### 4.25.0 (2024-01-22)
7
+ * [Change] Bumped fishawack/lab-env-core-1 to 1.3.1
8
+ * [Bug] when services not running exit with status code of 1
9
+
10
+ ### 4.24.0 (2023-10-24)
11
+ * [Misc] no changes due to issue with deployment
12
+
3
13
  ### 4.23.0 (2023-10-24)
4
14
  * [Feature] add target and target_image args to dockerfile build process to overrides can switch between full and alpine
5
15
  * [Feature] added new clients
@@ -1,5 +1,11 @@
1
1
  ## Changelog
2
2
 
3
+ ### 1.3.2 (2024-01-24)
4
+ * [fix] install latest eb cli and use node images python rather than pyenv
5
+
6
+ ### 1.3.1 (2024-01-22)
7
+ * [fix] rebuild of image to get the latest chromium version to fix new puppeteer headless mode
8
+
3
9
  ### 1.3.0 (2023-03-17)
4
10
  * [feat] node user is now added to www-data group for easier file permission management
5
11
  * [fix] disable npm message about update being available
package/core/1/Dockerfile CHANGED
@@ -79,11 +79,10 @@ RUN apt-get install -y ghostscript
79
79
  RUN apt-get install zip
80
80
 
81
81
  # Install AWS Elastic Beanstalk cli
82
- ENV PATH="${PATH}:/.pyenv/versions/3.7.2/bin"
83
82
  ENV PATH="${PATH}:/.ebcli-virtual-env/executables"
84
- RUN apt-get install -y zlib1g-dev libssl-dev libncurses-dev libffi-dev libsqlite3-dev libreadline-dev libbz2-dev && \
85
- git clone https://github.com/aws/aws-elastic-beanstalk-cli-setup.git ~/aws-eb --depth 1 --branch v0.1.2 && \
86
- PYENV_ROOT=/.pyenv ~/aws-eb/scripts/python_installer && \
83
+ RUN apt-get -y install python-is-python3 python3-pip && \
84
+ pip install virtualenv --break-system-packages && \
85
+ git clone https://github.com/aws/aws-elastic-beanstalk-cli-setup.git ~/aws-eb && \
87
86
  python ~/aws-eb/scripts/ebcli_installer.py --location / && \
88
87
  rm -rf ~/aws-eb
89
88
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "core",
3
- "version": "1.3.0",
3
+ "version": "1.3.2",
4
4
  "description": "lab-env docker config for the @fishawack/core/1 npm module",
5
5
  "scripts": {
6
6
  "preversion": "docker login",
package/globals.js CHANGED
@@ -213,7 +213,7 @@ if(args[0] !== 'diag' && args[0] !== 'diagnose' && args[0] !== 'origin' && args[
213
213
  // Stop here if docker process not running
214
214
  } else if(!services) {
215
215
  console.log(`${utilities.colorize(`Docker`, 'info')} does not appear to be running...\n\nRun ${utilities.colorize(`fw --debug`, 'success')} for more information`);
216
- process.exit();
216
+ process.exit(1);
217
217
  }
218
218
  }
219
219
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fishawack/lab-env",
3
- "version": "4.24.0",
3
+ "version": "4.25.1",
4
4
  "description": "Docker manager for FW",
5
5
  "main": "cli.js",
6
6
  "scripts": {