Merge pull request #5 from acelinkio/docker-copy-fix

fix: copy syntax for multiple file copy
This commit is contained in:
2025-03-28 16:12:38 +01:00
committed by GitHub

View File

@@ -1,10 +1,10 @@
FROM oven/bun FROM oven/bun
WORKDIR /app WORKDIR /app
COPY package.json bun.lock . COPY package.json bun.lock ./
RUN bun install --production RUN bun install --production
COPY index.ts tsconfig.json . COPY index.ts tsconfig.json ./
ENV NODE_ENV=production ENV NODE_ENV=production
RUN bun build \ RUN bun build \