Add the config dir to the docker build

This commit is contained in:
Dave Smith-Hayes 2024-12-10 22:21:20 -05:00
parent c999e7feab
commit d8e52ff150

View File

@ -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" ]