From c14bd1d578e03fe8d3efb1b91f01cf3182dfe07d Mon Sep 17 00:00:00 2001 From: "death.au" Date: Sun, 12 Nov 2023 23:36:49 +0000 Subject: [PATCH] Update Dockerfile Something isn't working in the deploy, so I'm trying ADD instead of COPY --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 65e5f62..77fe78d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,6 +6,6 @@ COPY ./package.json /app COPY ./bun.lockb /app RUN bun install -COPY . /app +ADD . /app CMD [ "bun", "run", "/app/src/index.ts"] \ No newline at end of file