@fishawack/lab-env 4.25.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,6 +1,9 @@
1
1
  ## Changelog
2
2
 
3
- ### 4.25.0 (2023-10-24)
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)
4
7
  * [Change] Bumped fishawack/lab-env-core-1 to 1.3.1
5
8
  * [Bug] when services not running exit with status code of 1
6
9
 
@@ -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.1",
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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fishawack/lab-env",
3
- "version": "4.25.0",
3
+ "version": "4.25.1",
4
4
  "description": "Docker manager for FW",
5
5
  "main": "cli.js",
6
6
  "scripts": {