feat: new DatabaseInstance class for universal database management, W.I.P
This commit is contained in:
parent
123fce455b
commit
b7de4d9614
5 changed files with 61 additions and 15 deletions
|
@ -1,4 +1,4 @@
|
|||
FROM node:21
|
||||
FROM oven/bun:latest
|
||||
|
||||
# Install netcat
|
||||
RUN apt-get update && apt-get install -y netcat-traditional
|
||||
|
@ -6,9 +6,10 @@ RUN apt-get update && apt-get install -y netcat-traditional
|
|||
WORKDIR /usr/src/app
|
||||
|
||||
# Copy package.json and package-lock.json to the working directory
|
||||
COPY package*.json ./
|
||||
COPY package.json ./
|
||||
copy bun.lockb ./
|
||||
|
||||
RUN npm install
|
||||
RUN bun install
|
||||
|
||||
COPY . .
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue