fix: fix styles

This commit is contained in:
SD 2024-06-29 17:55:59 +04:00
parent a1204cea91
commit 035286823e
4 changed files with 3579 additions and 9465 deletions

View File

@ -1,15 +1,15 @@
FROM node:lts as dependencies FROM node:20.10.0 as dependencies
WORKDIR /app WORKDIR /app
COPY package.json package-lock.json ./ COPY package.json yarn.lock ./
RUN npm ci --verbose RUN yarn install --frozen-lockfile
FROM node:lts as builder FROM node:20.10.0 as builder
WORKDIR /app WORKDIR /app
COPY . . COPY . .
COPY --from=dependencies /app/node_modules ./node_modules COPY --from=dependencies /app/node_modules ./node_modules
RUN npm run build --debug --verbose RUN yarn build
FROM node:lts as runner FROM node:20.10.0 as runner
WORKDIR /app WORKDIR /app
COPY . . COPY . .
@ -20,4 +20,4 @@ COPY --from=builder /app/.next ./.next
COPY --from=dependencies /app/node_modules ./node_modules COPY --from=dependencies /app/node_modules ./node_modules
EXPOSE 4200 EXPOSE 4200
CMD ["npm", "start"] CMD ["yarn", "start"]

9457
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -44,6 +44,6 @@
font-weight: 600 !important; font-weight: 600 !important;
padding: 0 !important; padding: 0 !important;
font-size: 1.125rem !important; font-size: 1.125rem !important;
text-align: left !important; justify-content: flex-start !important;
} }
} }

3571
yarn.lock Normal file

File diff suppressed because it is too large Load Diff