You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
FROM node:18 AS build-env
|
|
COPY . /app
|
|
WORKDIR /app
|
|
|
|
RUN yarn
|
|
RUN yarn build
|
|
|
|
FROM node:18
|
|
COPY --from=build-env /app/build /app
|
|
WORKDIR /app
|
|
CMD ["index.js"] |