@fishawack/lab-env 4.25.0 → 4.25.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 +7 -1
- package/core/1/CHANGELOG.md +9 -0
- package/core/1/Dockerfile +5 -5
- package/core/1/package.json +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
## Changelog
|
|
2
2
|
|
|
3
|
-
### 4.25.
|
|
3
|
+
### 4.25.2 (2024-02-09)
|
|
4
|
+
* [Change] Bumped fishawack/lab-env-core-1 to 1.3.3
|
|
5
|
+
|
|
6
|
+
### 4.25.1 (2024-01-24)
|
|
7
|
+
* [Change] Bumped fishawack/lab-env-core-1 to 1.3.2
|
|
8
|
+
|
|
9
|
+
### 4.25.0 (2024-01-22)
|
|
4
10
|
* [Change] Bumped fishawack/lab-env-core-1 to 1.3.1
|
|
5
11
|
* [Bug] when services not running exit with status code of 1
|
|
6
12
|
|
package/core/1/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
## Changelog
|
|
2
2
|
|
|
3
|
+
### 1.3.3 (2024-02-09)
|
|
4
|
+
* [fix] symlink wine64 now htat wine is the default global command but electron expects wine64
|
|
5
|
+
|
|
6
|
+
### 1.3.2 (2024-01-24)
|
|
7
|
+
* [fix] install latest eb cli and use node images python rather than pyenv
|
|
8
|
+
|
|
9
|
+
### 1.3.1 (2024-01-22)
|
|
10
|
+
* [fix] rebuild of image to get the latest chromium version to fix new puppeteer headless mode
|
|
11
|
+
|
|
3
12
|
### 1.3.0 (2023-03-17)
|
|
4
13
|
* [feat] node user is now added to www-data group for easier file permission management
|
|
5
14
|
* [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
|
|
|
@@ -97,7 +96,8 @@ RUN rm -rf ./aws && rm -rf awscliv2.zip
|
|
|
97
96
|
RUN npm install -g electron-packager@latest
|
|
98
97
|
|
|
99
98
|
# Install wine64
|
|
100
|
-
RUN apt-get install -y wine64
|
|
99
|
+
RUN apt-get install -y wine64 && \
|
|
100
|
+
ln -s /usr/bin/wine /usr/bin/wine64
|
|
101
101
|
|
|
102
102
|
# Install watertight
|
|
103
103
|
RUN --mount=type=ssh npm install -g git+ssh://git@bitbucket.org/fishawackdigital/watertight-node-auto.git#v6.0.0
|
package/core/1/package.json
CHANGED