1
0
mirror of https://github.com/toast-ts/Daggerbot-TS.git synced 2024-09-29 04:11:00 -04:00
Daggerbot-TS/Dockerfile
2024-02-29 22:23:11 +11:00

12 lines
390 B
Docker

FROM node:21.1.0-bookworm-slim
ENV YARN_VERSION 4.1.0
ENV TZ Australia/Sydney
RUN yarn policies set-version $YARN_VERSION
RUN apt update -y && apt upgrade -y && apt install -y git fontconfig && 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
CMD [ "yarn", "node", "." ]