Skip to content
This repository was archived by the owner on Nov 10, 2025. It is now read-only.

Commit e7e5d78

Browse files
TimeraaBas950
andcommitted
feat: Strings v4 updates
Co-authored-by: Bas950 <me@bas950.com>
1 parent 7c4fd28 commit e7e5d78

15 files changed

Lines changed: 3792 additions & 3588 deletions

File tree

master/Dockerfile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
1-
FROM node:16.11.0
1+
FROM gplane/pnpm:alpine
22

3-
COPY package.json package.json
4-
RUN yarn
3+
COPY package.json pnpm-lock.yaml ./
4+
RUN pnpm i --frozen-lockfile
55

66
COPY . .
7-
RUN yarn build
7+
RUN pnpm build
88

9-
FROM node:16.11.0
9+
FROM gplane/pnpm:alpine
1010

1111
WORKDIR /app
1212

1313
ENV NODE_ENV=production
1414

15-
COPY --from=0 package.json package.json
16-
RUN yarn
15+
COPY --from=0 package.json pnpm-lock.yaml ./
16+
RUN pnpm i --frozen-lockfile --prod
1717

1818
COPY --from=0 dist .
1919

0 commit comments

Comments
 (0)