- Implemented PATCH and DELETE endpoints for bug reports. - Created user management page with user creation, display name update, password reset, and user deletion functionalities. - Added password validation and hashing for user creation and password reset. - Integrated dialogs for user actions (create, update, reset password, delete). - Configured SvelteKit with Node adapter and Vite for build process. - Set up Tailwind CSS for styling.
10 lines
207 B
Docker
10 lines
207 B
Docker
FROM oven/bun:alpine
|
|
WORKDIR /app
|
|
COPY package.json bun.lock* ./
|
|
RUN bun install --frozen-lockfile || bun install
|
|
COPY . .
|
|
RUN bun run build
|
|
ENV NODE_ENV=production
|
|
EXPOSE 3000
|
|
CMD ["bun", "build/index.js"]
|