tabminal 3.0.25 → 3.0.26

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.
Files changed (2) hide show
  1. package/Dockerfile +3 -1
  2. package/package.json +1 -1
package/Dockerfile CHANGED
@@ -2,13 +2,15 @@ FROM node:latest
2
2
 
3
3
  WORKDIR /app
4
4
 
5
+ ARG TABMINAL_NPM_SPEC=tabminal
6
+
5
7
  # Install cloudflared
6
8
  RUN curl -L --output cloudflared.deb https://github.com/cloudflare/cloudflared/releases/latest/download/cloudflared-linux-amd64.deb && \
7
9
  dpkg -i cloudflared.deb && \
8
10
  rm cloudflared.deb
9
11
 
10
12
  # Install Tabminal from npm
11
- RUN npm install -g tabminal --unsafe-perm --allow-root
13
+ RUN npm install -g "${TABMINAL_NPM_SPEC}" --unsafe-perm --allow-root
12
14
 
13
15
  # Expose the default port
14
16
  EXPOSE 9846
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tabminal",
3
- "version": "3.0.25",
3
+ "version": "3.0.26",
4
4
  "description": "Tab(ter)minal, a Cloud-Native terminal and ACP agent workspace for desktop, tablet, and phone.",
5
5
  "type": "module",
6
6
  "bin": {