never mind we undo that

This commit is contained in:
localhost 2024-11-30 19:21:19 +01:00
parent 540df36ef2
commit 96f8ec7b00
1 changed files with 3 additions and 3 deletions

View File

@ -1,9 +1,9 @@
FROM oven/bun:1 AS base
FROM node:alpine
RUN mkdir -p /usr/src/preservetube/backend
WORKDIR /usr/src/preservetube/backend
COPY . /usr/src/preservetube/backend
RUN bun install
RUN yarn
CMD ["bun", "run", "index.js"]
CMD ["node", "index.js"]