initial commit

This commit is contained in:
2024-08-20 19:15:38 +02:00
parent fbb4748e65
commit 5551086ed4
8 changed files with 71 additions and 4 deletions

17
Dockerfile Normal file
View File

@@ -0,0 +1,17 @@
FROM oven/bun
WORKDIR /app
COPY package.json .
COPY bun.lockb .
RUN bun install --production
COPY src src
COPY tsconfig.json .
# COPY public public
ENV NODE_ENV production
CMD ["bun", "src/index.ts"]
EXPOSE 4444