We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 827eb23 commit 7402937Copy full SHA for 7402937
2 files changed
src/modules/appear-x/container/Dockerfile
@@ -0,0 +1,6 @@
1
+FROM node:22-alpine
2
+WORKDIR /home/node/module
3
+COPY src/server/core ./core
4
+COPY src/modules/appear-x/container ./
5
+RUN npm install
6
+CMD ["npm", "run", "development"]
src/modules/mikrotik-interfaces/container/Dockerfile
@@ -1,6 +1,5 @@
FROM node:22-alpine
WORKDIR /home/node/module
-RUN apk add --no-cache iputils
COPY src/server/core ./core
COPY src/modules/mikrotik-interfaces/container ./
RUN npm install
0 commit comments