mirror of
https://github.com/toast-ts/Daggerbot-TS.git
synced 2024-11-17 00:10:58 -05:00
12 lines
373 B
Docker
12 lines
373 B
Docker
|
FROM node:21.1.0-bookworm-slim
|
||
|
ENV YARN_VERSION 4.0.2
|
||
|
RUN yarn policies set-version $YARN_VERSION
|
||
|
RUN apt update -y && apt upgrade -y && apt install -y git
|
||
|
RUN npm install -g typescript
|
||
|
WORKDIR /Daggerbot
|
||
|
RUN git config --global --add safe.directory /Daggerbot
|
||
|
COPY tsconfig.json package.json yarn.lock .yarnrc.yml ./
|
||
|
RUN yarn workspaces focus
|
||
|
|
||
|
CMD [ "yarn", "node", "." ]
|