Skip to content
Snippets Groups Projects
Commit df6b560f authored by 이권민's avatar 이권민
Browse files
parents b6d43bbb 11aa0cee
No related branches found
No related tags found
No related merge requests found
node_modules
\ No newline at end of file
FROM node:20-alpine
WORKDIR /app
COPY package.json ./
RUN npm install
COPY . .
EXPOSE 80
CMD ["npm", "start"]
\ No newline at end of file
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
"web-vitals": "^2.1.4" "web-vitals": "^2.1.4"
}, },
"scripts": { "scripts": {
"start": "react-scripts start", "start": "export PORT=80 && react-scripts start",
"build": "react-scripts build", "build": "react-scripts build",
"test": "react-scripts test", "test": "react-scripts test",
"eject": "react-scripts eject" "eject": "react-scripts eject"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment