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:
2025-04-17 12:12:40 -04:00
parent a5f809eca5
commit 78b9522d03
4 changed files with 10 additions and 2 deletions

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