This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#development build | |
FROM node:18.12.1-alpine as development | |
ENV NODE_ENV development | |
WORKDIR /react-app | |
COPY package*.json . | |
#RUN yarn config set "strict-ssl" false -g | |
RUN yarn config set registry https://registry.npmjs.org | |
RUN yarn install | |
COPY . . | |
EXPOSE 3000 |