From d8e52ff1500267a3131f311dc06530b8cf175615 Mon Sep 17 00:00:00 2001 From: Dave Smith-Hayes Date: Tue, 10 Dec 2024 22:21:20 -0500 Subject: [PATCH] Add the config dir to the docker build --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 78c7666..dcc13c0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,6 +9,7 @@ COPY tsconfig.json . RUN bun install --frozen-lockfile COPY ./src ./src COPY ./posts ./posts +COPY ./config ./config USER bun CMD [ "bun", "src/index.tsx" ]