Skip to content

Commit

Permalink
chore(Dockerfile): set working directory to /app for better organization
Browse files Browse the repository at this point in the history
feat(Dockerfile): include tsconfig.json in the Docker image for TypeScript support
  • Loading branch information
0xJord4n committed Dec 23, 2024
1 parent 0cd5385 commit 2c4036f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 2c4036f

Please sign in to comment.