Skip to content

Commit b8cc6b9

Browse files
committed
chore: simplified Dockerfile
1 parent 8fc41da commit b8cc6b9

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

Dockerfile

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,10 @@ FROM node:24-alpine
22

33
WORKDIR /app
44

5-
COPY package.json .
5+
COPY . .
66

77
RUN npm install
88

9-
COPY . .
10-
119
EXPOSE 3000
1210

1311
CMD ["npm", "start"]

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
"scripts": {
88
"docusaurus": "docusaurus",
99
"start": "docusaurus start --host 0.0.0.0",
10+
"dev": "npm run start",
1011
"build": "docusaurus build",
1112
"swizzle": "docusaurus swizzle",
1213
"clear": "docusaurus clear",

0 commit comments

Comments
 (0)