From 8a67a6e602a15ddfdb2d5ddeb0c4ee090a09c74f Mon Sep 17 00:00:00 2001 From: toast-ts <96593068+toast-ts@users.noreply.github.com> Date: Thu, 29 Feb 2024 22:23:11 +1100 Subject: [PATCH] Remove additional layer --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index d8744dc..27f4b3a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,11 +2,10 @@ 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 -RUN npm install -g typescript +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 workspaces focus +RUN yarn CMD [ "yarn", "node", "." ]