feat: add Dockerfile for containerization and update package dependencies for Svelte adapter

This commit is contained in:
Norbert Maciaszek
2025-11-17 22:35:23 +01:00
parent 6507ac7f0c
commit e5025d89a6
4 changed files with 244 additions and 8 deletions

16
Dockerfile Normal file
View File

@@ -0,0 +1,16 @@
FROM node:22-alpine
WORKDIR /app
COPY package.json .
COPY package-lock.json .
RUN npm install
COPY . .
RUN npm run build
EXPOSE 3000
CMD ["node", "build"]