@fishawack/lab-env 5.2.0 → 5.2.1-beta.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 +7 -0
- package/globals.js +2 -2
- package/package.json +1 -1
- package/python/0/Dockerfile +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
## Changelog
|
|
2
2
|
|
|
3
|
+
### 5.2.1-beta.1 (2026-01-26)
|
|
4
|
+
|
|
5
|
+
#### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* issue with lab-env calling lab-env and concatanating repo env variable ([03313c3](https://bitbucket.org/fishawackdigital/lab-env/commits/03313c3c43c793222620170c381af05ec4b1c348))
|
|
8
|
+
* use correct prod base image on python images ([db0ace4](https://bitbucket.org/fishawackdigital/lab-env/commits/db0ace419e8c635c727aa33330a3156c0956af0b))
|
|
9
|
+
|
|
3
10
|
### 5.2.0 (2026-01-17)
|
|
4
11
|
|
|
5
12
|
#### Features
|
package/globals.js
CHANGED
|
@@ -847,7 +847,7 @@ module.exports = {
|
|
|
847
847
|
let alreadyRunning = running;
|
|
848
848
|
|
|
849
849
|
if (!running) {
|
|
850
|
-
execSync(
|
|
850
|
+
execSync(`${docker} up -d`, opts);
|
|
851
851
|
running = true;
|
|
852
852
|
}
|
|
853
853
|
|
|
@@ -858,7 +858,7 @@ module.exports = {
|
|
|
858
858
|
throw e;
|
|
859
859
|
} finally {
|
|
860
860
|
if (!alreadyRunning) {
|
|
861
|
-
execSync(
|
|
861
|
+
execSync(`${docker} down`, opts);
|
|
862
862
|
running = false;
|
|
863
863
|
}
|
|
864
864
|
}
|
package/package.json
CHANGED
package/python/0/Dockerfile
CHANGED
|
@@ -2,7 +2,7 @@ FROM ghcr.io/astral-sh/uv:python3.13-bookworm AS development
|
|
|
2
2
|
|
|
3
3
|
LABEL org.opencontainers.image.authors="Mike Mellor <mike.mellor@avalerehealth.com>"
|
|
4
4
|
|
|
5
|
-
FROM fishawack/lab-env-
|
|
5
|
+
FROM fishawack/lab-env-python-0:latest AS production
|
|
6
6
|
|
|
7
7
|
# Copy source code into container
|
|
8
8
|
COPY . /app
|