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.
- package/Dockerfile +3 -1
- 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
|
|
13
|
+
RUN npm install -g "${TABMINAL_NPM_SPEC}" --unsafe-perm --allow-root
|
|
12
14
|
|
|
13
15
|
# Expose the default port
|
|
14
16
|
EXPOSE 9846
|