diff options
| author | Andrew Lee <andrew@alee14.me> | 2025-03-27 13:54:02 -0400 |
|---|---|---|
| committer | Andrew Lee <andrew@alee14.me> | 2025-03-27 13:54:02 -0400 |
| commit | 966df0b6da48fccd739abb302fb24685614f7f5e (patch) | |
| tree | 5dd8b7f42c6c970981c694c7aec6827921ba89d4 /bot/Dockerfile | |
| parent | 7b9a58cac0b59a73562d68540292e89f57bf30cf (diff) | |
| download | AleeBot-966df0b6da48fccd739abb302fb24685614f7f5e.tar.gz AleeBot-966df0b6da48fccd739abb302fb24685614f7f5e.tar.bz2 AleeBot-966df0b6da48fccd739abb302fb24685614f7f5e.zip | |
Docker changes
Diffstat (limited to 'bot/Dockerfile')
| -rw-r--r-- | bot/Dockerfile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/bot/Dockerfile b/bot/Dockerfile index ae74f3a..aeda756 100644 --- a/bot/Dockerfile +++ b/bot/Dockerfile @@ -2,8 +2,11 @@ FROM oven/bun:latest WORKDIR /bot -COPY . . +COPY bun.lockb . +COPY package.json . RUN bun install +COPY . . + ENTRYPOINT ["bun", "start"] |
