Merge branch 'release/v0.9.0'
This commit is contained in:
@@ -1,3 +1,3 @@
|
||||
NEXT_PUBLIC_VERSION="0.8.0"
|
||||
NEXT_PUBLIC_VERSION="0.9.0"
|
||||
NEXT_PUBLIC_API_URL="https://rms.witel.ir"
|
||||
NEXT_PUBLIC_MAPTILE_ENDPOINT="https://rmsmap.rmto.ir/141map"
|
||||
2
.gitignore
vendored
2
.gitignore
vendored
@@ -32,3 +32,5 @@ cypress/screenshots
|
||||
.idea
|
||||
package-lock.json
|
||||
ecosystem.config.js
|
||||
|
||||
packages*.tar.gz
|
||||
|
||||
10
Dockerfile
Normal file
10
Dockerfile
Normal file
@@ -0,0 +1,10 @@
|
||||
FROM node:22.11.0-alpine3.20
|
||||
|
||||
WORKDIR /var/www/app
|
||||
|
||||
COPY package*.json .
|
||||
|
||||
RUN npm install
|
||||
COPY . .
|
||||
|
||||
CMD [ "tail", "-f", "/dev/null"]
|
||||
7
docker-compose.yml
Normal file
7
docker-compose.yml
Normal file
@@ -0,0 +1,7 @@
|
||||
services:
|
||||
app:
|
||||
build: .
|
||||
volumes:
|
||||
- .:/var/www/app
|
||||
- /var/www/app/node_modules
|
||||
command: sh -c "cd /var/www/app && tar -czvf packages_$(date +%Y_%m_%d).tar.gz node_modules"
|
||||
Reference in New Issue
Block a user