From 2c4036f5f759266f0c31080ea480a690a2baabe6 Mon Sep 17 00:00:00 2001 From: 0xJordan Date: Mon, 23 Dec 2024 18:59:40 +0100 Subject: [PATCH] chore(Dockerfile): set working directory to /app for better organization feat(Dockerfile): include tsconfig.json in the Docker image for TypeScript support --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index abd8190..79788db 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,9 @@ FROM oven/bun:latest as base +WORKDIR /app + # Copy the lock and package file -COPY bun.lockb package.json ./ +COPY bun.lockb package.json tsconfig.json ./ # Copy source code COPY src ./src