drop .env from git ignore
Some checks failed
Deploy App / build (push) Failing after 1m8s
Deploy App / deploy (push) Has been skipped

This commit is contained in:
valere
2025-10-01 08:54:45 +02:00
parent ab3057ac7f
commit 9acc43a384
3 changed files with 4 additions and 5 deletions

3
.env Executable file
View File

@@ -0,0 +1,3 @@
DOMAIN="evilspins.com"
PORT="7901"
PORT_EXPOSED="3000"

4
.gitignore vendored
View File

@@ -18,7 +18,3 @@ logs
.fleet
.idea
# Local env files
.env
.env.*
!.env.example

View File

@@ -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