fix : frozen file issue #6
Binary file not shown.
11
Dockerfile
11
Dockerfile
|
|
@ -1,4 +1,4 @@
|
||||||
FROM node:21-alpine as builder
|
FROM node:24-alpine AS builder
|
||||||
|
|
||||||
ARG API_BASE_URL="https://mfs-api.midastix.com"
|
ARG API_BASE_URL="https://mfs-api.midastix.com"
|
||||||
|
|
||||||
|
|
@ -9,9 +9,14 @@ WORKDIR /app
|
||||||
COPY package.json package.json
|
COPY package.json package.json
|
||||||
COPY yarn.lock yarn.lock
|
COPY yarn.lock yarn.lock
|
||||||
|
|
||||||
RUN yarn install --frozen-lockfile
|
# RUN yarn install --frozen-lockfile
|
||||||
|
RUN yarn install
|
||||||
|
|
||||||
COPY . .
|
# COPY . .
|
||||||
|
COPY public public
|
||||||
|
COPY src src
|
||||||
|
COPY tsconfig.json tsconfig.json
|
||||||
|
# COPY .yarnrc.yml .yarnrc.yml
|
||||||
|
|
||||||
RUN yarn build
|
RUN yarn build
|
||||||
|
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load Diff
|
|
@ -58,6 +58,5 @@
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/react-icons": "^2.2.7",
|
"@types/react-icons": "^2.2.7",
|
||||||
"@types/react-slick": "^0.23.13"
|
"@types/react-slick": "^0.23.13"
|
||||||
},
|
}
|
||||||
"packageManager": "yarn@4.9.1+sha512.f95ce356460e05be48d66401c1ae64ef84d163dd689964962c6888a9810865e39097a5e9de748876c2e0bf89b232d583c33982773e9903ae7a76257270986538"
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue