We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d42b53 commit 560cc18Copy full SHA for 560cc18
DOCKER.md
@@ -0,0 +1,7 @@
1
+```
2
+docker build -t pythagora .
3
+
4
+docker run -v /Volumes/src/jellyfin-web:/data -it pythagora npx pythagora \
5
+ --unit-tests \
6
+ --path /data/src/controllers/list.js
7
Dockerfile
@@ -0,0 +1,18 @@
+FROM node:18
+# Create app directory
+RUN mkdir /app
+# Set working directory
+WORKDIR /app
8
9
+# Copy package.json and package-lock.json
10
+COPY package*.json ./
11
12
+# Install dependencies
13
+RUN npm i -g pythagora
14
15
+# Copy source code
16
+COPY . .
17
18
+VOLUME [ "/data" ]
0 commit comments