diff options
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 . . |
