feat / AEB-61 add dockeringore files
This commit is contained in:
3
frontend/.dockerignore
Normal file
3
frontend/.dockerignore
Normal file
@@ -0,0 +1,3 @@
|
||||
Dockerfile
|
||||
.dockerignore
|
||||
node_modules
|
||||
12
frontend/Dockerfile
Normal file
12
frontend/Dockerfile
Normal file
@@ -0,0 +1,12 @@
|
||||
FROM node:23-alpine
|
||||
WORKDIR /app
|
||||
COPY --chmod=755 <<EOT ./entrypoint.sh
|
||||
#!/usr/bin/env sh
|
||||
set -e
|
||||
npm run build &&
|
||||
npm start
|
||||
EOT
|
||||
COPY . ./
|
||||
RUN npm install
|
||||
EXPOSE 3000
|
||||
ENTRYPOINT ["./entrypoint.sh"]
|
||||
941
frontend/package-lock.json
generated
941
frontend/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -15,8 +15,8 @@
|
||||
"axios": "^1.11.0",
|
||||
"next": "^15.4.3",
|
||||
"next-auth": "^4.24.11",
|
||||
"react": "19.1.0",
|
||||
"react-dom": "19.1.0",
|
||||
"react": "^19.1.0",
|
||||
"react-dom": "^19.1.0",
|
||||
"react-hot-toast": "^2.6.0",
|
||||
"react-icons": "^5.5.0",
|
||||
"react-select": "^5.10.2",
|
||||
@@ -29,7 +29,7 @@
|
||||
"@types/react": "^19",
|
||||
"@types/react-dom": "^19",
|
||||
"eslint": "^9",
|
||||
"eslint-config-next": "15.4.3",
|
||||
"eslint-config-next": "^15.4.3",
|
||||
"prettier": "^3.6.2",
|
||||
"prettier-plugin-tailwindcss": "^0.6.14",
|
||||
"tailwindcss": "^4",
|
||||
|
||||
Reference in New Issue
Block a user