1
0
mirror of https://github.com/toast-ts/Daggerbot-TS.git synced 2025-02-01 07:29:42 +11:00
Daggerbot-TS/Dockerfile

13 lines
408 B
Docker
Raw Normal View History

2024-01-28 17:12:32 +11:00
FROM node:21.1.0-bookworm-slim
ENV YARN_VERSION 4.0.2
2024-01-31 17:33:01 +11:00
ENV TZ Australia/Sydney
2024-01-28 17:12:32 +11:00
RUN yarn policies set-version $YARN_VERSION
2024-01-30 04:32:40 +11:00
RUN apt update -y && apt upgrade -y && apt install -y git fontconfig
2024-01-28 17:12:32 +11:00
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", "." ]