Remade dockerfile #48

Merged
LucidKobold merged 7 commits from dockerfile into main 2025-06-20 17:10:24 -04:00
Showing only changes of commit 6eab2bc59b - Show all commits

View File

@@ -15,11 +15,12 @@ COPY package.json yarn.lock ./
# Install app dependencies
RUN yarn install --immutable
# Type check app
RUN yarn typecheck
# Bundle app source
COPY . .
# Type check app
RUN yarn typecheck
FROM base AS runner