Making UI changes

This commit is contained in:
Ryan Chen
2025-12-24 17:12:56 -08:00
parent 70799ffb7d
commit f5e2d68cd2
17 changed files with 3262 additions and 1747 deletions

View File

@@ -0,0 +1,15 @@
FROM node:20-slim
WORKDIR /app
# Copy package files
COPY package.json yarn.lock* ./
# Install dependencies
RUN yarn install
# Expose rsbuild dev server port (default 3000)
EXPOSE 3000
# The actual source code will be mounted as a volume
# CMD will be specified in docker-compose