1
0
mirror of https://github.com/toast-ts/Daggerbot-TS.git synced 2025-01-31 19:09:40 +11:00
Daggerbot-TS/Dockerfile

15 lines
480 B
Docker
Raw Normal View History

2024-09-03 16:05:46 +10:00
FROM node:22.7-alpine3.20
2024-09-16 14:00:07 +10:00
ENV YARN_VERSION="4.5.0"
2024-08-11 08:23:25 +10:00
ENV TZ="Australia/Sydney"
ENV NODE_COMPILE_CACHE="/Daggerbot/build_cache"
2024-01-28 17:12:32 +11:00
RUN yarn policies set-version $YARN_VERSION
2024-04-03 18:04:05 +11:00
RUN apk update && apk upgrade && apk add --no-cache git fontconfig ttf-dejavu
2024-01-28 17:12:32 +11:00
WORKDIR /Daggerbot
2024-04-03 18:04:05 +11:00
RUN npm install -g typescript
2024-01-28 17:12:32 +11:00
RUN git config --global --add safe.directory /Daggerbot
COPY .yarn/patches .yarn/patches
2024-01-28 17:12:32 +11:00
COPY tsconfig.json package.json yarn.lock .yarnrc.yml ./
2024-02-29 22:23:11 +11:00
RUN yarn
2024-01-28 17:12:32 +11:00
CMD [ "yarn", "node", "." ]