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 8fc41da commit b8cc6b9Copy full SHA for b8cc6b9
2 files changed
Dockerfile
@@ -2,12 +2,10 @@ FROM node:24-alpine
2
3
WORKDIR /app
4
5
-COPY package.json .
+COPY . .
6
7
RUN npm install
8
9
-COPY . .
10
-
11
EXPOSE 3000
12
13
CMD ["npm", "start"]
package.json
@@ -7,6 +7,7 @@
"scripts": {
"docusaurus": "docusaurus",
"start": "docusaurus start --host 0.0.0.0",
+ "dev": "npm run start",
"build": "docusaurus build",
"swizzle": "docusaurus swizzle",
"clear": "docusaurus clear",
0 commit comments