Initial server-stack setup

This commit is contained in:
JamBox
2026-02-15 20:04:18 -08:00
commit 7f14c826f2
10 changed files with 122 additions and 0 deletions

6
apps/tessavb/Dockerfile Normal file
View File

@@ -0,0 +1,6 @@
FROM node:20-alpine
WORKDIR /app
COPY package.json server.js ./
RUN npm install
EXPOSE 8080
CMD ["node", "server.js"]