various fixes

This commit is contained in:
adrian
2025-08-19 22:12:37 +02:00
parent bc4463bd37
commit c37379dcb2
4 changed files with 151 additions and 4 deletions

View File

@ -1,4 +1,4 @@
FROM node:latest
FROM oven/bun:latest
WORKDIR /app
COPY ./index.html .
@ -6,8 +6,8 @@ COPY ./main.js .
COPY ./backend.js .
COPY ./package.json ./package-lock.json .
RUN npm ci --only=production
RUN bun install
EXPOSE 3000
CMD ["npm" "backend.js"]
CMD ["npm", "backend.js"]