@fishawack/lab-env 4.25.1 → 4.25.3
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 +6 -0
- package/core/1/CHANGELOG.md +3 -0
- package/core/1/Dockerfile +2 -1
- package/core/1/package.json +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
## Changelog
|
|
2
2
|
|
|
3
|
+
### 4.25.3 (2024-02-09)
|
|
4
|
+
* [Change] Bumped fishawack/lab-env-core-1 to 1.3.3
|
|
5
|
+
|
|
6
|
+
### 4.25.2 (2024-02-09)
|
|
7
|
+
* [Misc] no changes due to issue with deployment
|
|
8
|
+
|
|
3
9
|
### 4.25.1 (2024-01-24)
|
|
4
10
|
* [Change] Bumped fishawack/lab-env-core-1 to 1.3.2
|
|
5
11
|
|
package/core/1/CHANGELOG.md
CHANGED
package/core/1/Dockerfile
CHANGED
|
@@ -96,7 +96,8 @@ RUN rm -rf ./aws && rm -rf awscliv2.zip
|
|
|
96
96
|
RUN npm install -g electron-packager@latest
|
|
97
97
|
|
|
98
98
|
# Install wine64
|
|
99
|
-
RUN apt-get install -y wine64
|
|
99
|
+
RUN apt-get install -y wine64 && \
|
|
100
|
+
ln -s /usr/bin/wine /usr/bin/wine64
|
|
100
101
|
|
|
101
102
|
# Install watertight
|
|
102
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