@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 +4 -1
- package/core/1/CHANGELOG.md +6 -0
- package/core/1/Dockerfile +3 -4
- package/core/1/package.json +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
## Changelog
|
|
2
2
|
|
|
3
|
-
### 4.25.
|
|
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
|
|
package/core/1/CHANGELOG.md
CHANGED
|
@@ -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
|
|
85
|
-
|
|
86
|
-
|
|
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
|
|
package/core/1/package.json
CHANGED