2024-03-23 21:36:12 -04:00
|
|
|
FROM node:21.7.1-bookworm-slim
|
2024-03-05 19:12:36 -05:00
|
|
|
ENV YARN_VERSION 4.1.1
|
2024-01-31 01:33:01 -05:00
|
|
|
ENV TZ Australia/Sydney
|
2024-01-28 01:12:32 -05:00
|
|
|
RUN yarn policies set-version $YARN_VERSION
|
2024-02-29 06:23:11 -05:00
|
|
|
RUN apt update -y && apt upgrade -y && apt install -y git fontconfig && npm install -g typescript
|
2024-01-28 01:12:32 -05:00
|
|
|
WORKDIR /Daggerbot
|
|
|
|
RUN git config --global --add safe.directory /Daggerbot
|
|
|
|
COPY tsconfig.json package.json yarn.lock .yarnrc.yml ./
|
2024-02-29 06:23:11 -05:00
|
|
|
RUN yarn
|
2024-01-28 01:12:32 -05:00
|
|
|
|
|
|
|
CMD [ "yarn", "node", "." ]
|