feat: new DatabaseInstance class for universal database management, W.I.P

This commit is contained in:
Jo 2024-01-09 08:28:18 +01:00
parent 123fce455b
commit b7de4d9614
5 changed files with 61 additions and 15 deletions

View file

@ -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 . .