1
0
mirror of https://github.com/toast-ts/Daggerbot-TS.git synced 2024-09-29 08:20:59 -04:00
Daggerbot-TS/Dockerfile

14 lines
431 B
Docker
Raw Normal View History

FROM node:22.1.0-alpine3.19
2024-05-09 19:01:31 -04:00
ENV YARN_VERSION 4.2.2
2024-01-31 01:33:01 -05:00
ENV TZ Australia/Sydney
ENV NODE_COMPILE_CACHE /Daggerbot/build_cache
2024-01-28 01:12:32 -05:00
RUN yarn policies set-version $YARN_VERSION
2024-04-03 03:04:05 -04:00
RUN apk update && apk upgrade && apk add --no-cache git fontconfig ttf-dejavu
2024-01-28 01:12:32 -05:00
WORKDIR /Daggerbot
2024-04-03 03:04:05 -04:00
RUN npm install -g typescript
2024-01-28 01:12:32 -05:00
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
2024-04-29 08:24:45 -04:00
CMD yarn node .