drop .env from git ignore
This commit is contained in:
3
.env
Executable file
3
.env
Executable file
@@ -0,0 +1,3 @@
|
||||
DOMAIN="evilspins.com"
|
||||
PORT="7901"
|
||||
PORT_EXPOSED="3000"
|
||||
4
.gitignore
vendored
4
.gitignore
vendored
@@ -18,7 +18,3 @@ logs
|
||||
.fleet
|
||||
.idea
|
||||
|
||||
# Local env files
|
||||
.env
|
||||
.env.*
|
||||
!.env.example
|
||||
|
||||
@@ -4,7 +4,7 @@ FROM node:20-alpine AS build
|
||||
WORKDIR /app
|
||||
|
||||
RUN npm install -g pnpm
|
||||
COPY package.json pnpm-lock.yaml* .env ./
|
||||
COPY package.json pnpm-lock.yaml* ./
|
||||
RUN pnpm install --frozen-lockfile
|
||||
COPY . .
|
||||
RUN pnpm build
|
||||
|
||||
Reference in New Issue
Block a user