@fishawack/lab-env 4.12.0 → 4.13.0
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 +3 -0
- package/core/1/CHANGELOG.md +6 -1
- package/core/1/Dockerfile +6 -3
- package/core/1/docker-compose.yml +2 -0
- package/core/1/package.json +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/core/1/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
## Changelog
|
|
2
2
|
|
|
3
|
-
### 1.
|
|
3
|
+
### 1.2.2 (2023-02-25)
|
|
4
|
+
* [fix] set BRANCH and CI_COMMIT_REF_NAME env variables in container
|
|
5
|
+
* [fix] installed git-branch to fetch the current branch for deployment targets
|
|
6
|
+
* [refactor] moved global node module symlinking to alpine image for future use
|
|
7
|
+
|
|
8
|
+
### 1.2.1 (2023-02-25)
|
|
4
9
|
* [fix] install eb cli into root of image rather than root user directory
|
|
5
10
|
* [perf] dont recurse and dont change group of node_modules to speed up command
|
|
6
11
|
* [refactor] set node git flag without switching user directly in dockerfile
|
package/core/1/Dockerfile
CHANGED
|
@@ -43,6 +43,12 @@ RUN npm install check-dependencies -g
|
|
|
43
43
|
# Install node_modules checker
|
|
44
44
|
RUN npm install are-you-es5 -g
|
|
45
45
|
|
|
46
|
+
# Install git branch fetcher
|
|
47
|
+
RUN npm install git-branch -g
|
|
48
|
+
|
|
49
|
+
# Link root global node_modules to ~/.node_modules
|
|
50
|
+
RUN ln -s /usr/local/lib/node_modules/ /home/node/.node_modules
|
|
51
|
+
|
|
46
52
|
# Cleanup apt-get install folders
|
|
47
53
|
RUN apt-get clean && \
|
|
48
54
|
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
|
@@ -90,9 +96,6 @@ RUN apt-get install -y wine64
|
|
|
90
96
|
# Install watertight
|
|
91
97
|
RUN --mount=type=ssh npm install -g git+ssh://git@bitbucket.org/fishawackdigital/watertight-node-auto.git#v6.0.0
|
|
92
98
|
|
|
93
|
-
# Link root global node_modules to ~/.node_modules
|
|
94
|
-
RUN ln -s /usr/local/lib/node_modules/ /home/node/.node_modules
|
|
95
|
-
|
|
96
99
|
# Cleanup apt-get install folders
|
|
97
100
|
RUN apt-get clean && \
|
|
98
101
|
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
package/core/1/package.json
CHANGED