This commit is contained in:
2024-04-02 18:32:44 +02:00
parent 69e7a453e6
commit dd5a2b7f97
2 changed files with 20 additions and 0 deletions

20
Dockerfile Normal file
View File

@@ -0,0 +1,20 @@
FROM oven/bun:alpine
LABEL maintainer="BreizhHardware"
# Add your application files
ADD .env /app/.env
ADD prisma /app/prisma
ADD bun.lockb /app/bun.lockb
ADD index.ts /app/index.ts
ADD noDb.ts /app/noDb.ts
ADD package-lock.json /app/package-lock.json
ADD package.json /app/package.json
ADD tsconfig.json /app/tsconfig.json
# Change directory and run bun commands
WORKDIR /app
RUN bun install
CMD ["bun", "dev"]
EXPOSE 8080

BIN
bun.lockb

Binary file not shown.