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 b8cc6b9 commit 8b02c27Copy full SHA for 8b02c27
3 files changed
.dockerignore
@@ -1,2 +1,7 @@
1
node_modules
2
.git
3
+.gitignore
4
+*.md
5
+Dockerfile
6
+.github
7
+.prettierrc
Dockerfile
@@ -2,9 +2,12 @@ FROM node:24-alpine
WORKDIR /app
-COPY . .
+COPY package*.json .
+
+RUN npm install && \
8
+ npm cache clean --force
9
-RUN npm install
10
+COPY . .
11
12
EXPOSE 3000
13
package.json
@@ -7,7 +7,6 @@
"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