cleanup
All checks were successful
Build and publish / Git Tag (push) Successful in 3s
Build and publish / Build Container (push) Successful in 18s

This commit is contained in:
Zakary Timson 2025-04-17 12:12:40 -04:00
parent a5f809eca5
commit 78b9522d03
4 changed files with 10 additions and 2 deletions

9
.dockerignore Normal file
View File

@ -0,0 +1,9 @@
.github
.idea
vscode
node_modules
Dockerfile
docker-compose.yml
.env*
.dockerignore
.gitignore

1
.env
View File

@ -1,2 +1 @@
TOKEN=
TICKERS=AAPL,GOLD,GOOG,NASD,NVDA

View File

View File

@ -4,7 +4,7 @@ ARG PORT
ENV PORT=$PORT
COPY . .
RUN npm install && npm run build
RUN npm install && npm run build && rm -rf src
CMD ["node", "dist/main.js"]
EXPOSE $PORT