feat: Add server dependencies and initial application components.
All checks were successful
Build and Release / build-and-release (push) Successful in 15m24s

This commit is contained in:
Bryan1029384756
2026-02-21 15:06:36 -06:00
parent cbda60757c
commit 84aa458012
17 changed files with 1288 additions and 12 deletions

19
deploy/Dockerfile Normal file
View File

@@ -0,0 +1,19 @@
FROM node:20-alpine
RUN apk add --no-cache git
COPY deploy/server/ /app/server/
RUN cd /app/server && npm ci
RUN mkdir -p /app/releases
ENV GIT_REPO_URL=""
ENV GIT_BRANCH="main"
ENV VITE_CONVEX_URL=""
ENV VITE_LIVEKIT_URL=""
ENV PORT=3000
EXPOSE 3000
CMD ["node", "/app/server/server.js"]