Update Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
|
@@ -1,6 +1,7 @@
|
|
| 1 |
FROM node:lts-slim
|
| 2 |
|
| 3 |
-
|
|
|
|
| 4 |
|
| 5 |
# Rebuild native addons against the current Node version
|
| 6 |
RUN cd /usr/local/lib/node_modules/omniroute/app && npm rebuild better-sqlite3
|
|
|
|
| 1 |
FROM node:lts-slim
|
| 2 |
|
| 3 |
+
# Install global dependencies: omniroute and qodercli
|
| 4 |
+
RUN npm install -g omniroute @qoder-ai/qodercli
|
| 5 |
|
| 6 |
# Rebuild native addons against the current Node version
|
| 7 |
RUN cd /usr/local/lib/node_modules/omniroute/app && npm rebuild better-sqlite3
|