@powerhousedao/switchboard 2.4.6-dev.4 → 2.4.6-dev.5
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 +2 -3
- package/Dockerfile +2 -1
- package/entrypoint.sh +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
## 2.4.6-dev.
|
|
1
|
+
## 2.4.6-dev.5 (2025-05-25)
|
|
2
2
|
|
|
3
3
|
### 🩹 Fixes
|
|
4
4
|
|
|
5
|
-
- **switchboard:**
|
|
6
|
-
- **switchboard:** docker build ([7052e39e1](https://github.com/powerhouse-inc/powerhouse/commit/7052e39e1))
|
|
5
|
+
- **switchboard:** damn heroku ([fb95e9adc](https://github.com/powerhouse-inc/powerhouse/commit/fb95e9adc))
|
|
7
6
|
|
|
8
7
|
### ❤️ Thank You
|
|
9
8
|
|
package/Dockerfile
CHANGED
|
@@ -36,7 +36,8 @@ ARG PH_TAG=latest
|
|
|
36
36
|
ENV PH_TAG=$PH_TAG
|
|
37
37
|
|
|
38
38
|
RUN pnpm add -g ph-cmd@$PH_TAG && \
|
|
39
|
-
ph
|
|
39
|
+
ph init powerhouse --package-manager pnpm && \
|
|
40
|
+
cd /app/powerhouse && \
|
|
40
41
|
ph use $PH_TAG
|
|
41
42
|
|
|
42
43
|
# Copy and set up entrypoint script
|
package/entrypoint.sh
CHANGED