diff options
| author | Andrew Lee <andrew@alee14.me> | 2025-03-31 13:16:07 -0400 |
|---|---|---|
| committer | Andrew Lee <andrew@alee14.me> | 2025-03-31 13:16:07 -0400 |
| commit | 344e63115a746997e91b7fe6c72baaec51d96af7 (patch) | |
| tree | d71d682dbf7b5be3db8b2939f9e682f13dab8a56 /Dockerfile | |
| parent | 8c5b3e4c24e61d88a48da6a725a002a5bd3bb65a (diff) | |
| download | AleeBot-APF-master.tar.gz AleeBot-APF-master.tar.bz2 AleeBot-APF-master.zip | |
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,12 +1,12 @@ -FROM oven/bun:latest +FROM node:latest WORKDIR /bot COPY package.json ./ -COPY bun.lockb ./ +COPY yarn.lock ./ -RUN bun install +RUN yarn install COPY . . |
