Delete docker file
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
bf349a44a1
commit
9af5ef78b0
26
dockerfile
26
dockerfile
|
|
@ -1,26 +0,0 @@
|
||||||
FROM node:21-alpine as builder
|
|
||||||
|
|
||||||
ARG API_BASE_URL="https://www.sangwaritaxi.com/"
|
|
||||||
|
|
||||||
ENV REACT_APP_API_BASE_URL $API_BASE_URL
|
|
||||||
|
|
||||||
WORKDIR /app
|
|
||||||
|
|
||||||
COPY package.json package.json
|
|
||||||
COPY yarn.lock yarn.lock
|
|
||||||
|
|
||||||
RUN yarn install --frozen-lockfile
|
|
||||||
|
|
||||||
COPY . .
|
|
||||||
|
|
||||||
RUN yarn build
|
|
||||||
|
|
||||||
|
|
||||||
FROM scratch
|
|
||||||
|
|
||||||
WORKDIR /app
|
|
||||||
|
|
||||||
COPY --from=builder /app/build ./build
|
|
||||||
|
|
||||||
CMD ["sh"]
|
|
||||||
# new
|
|
||||||
Loading…
Reference in New Issue