Skip to content

Instantly share code, notes, and snippets.

View ZealousMacwan's full-sized avatar

Zealous Macwan ZealousMacwan

View GitHub Profile
@ZealousMacwan
ZealousMacwan / React Dockerfile
Last active November 19, 2022 17:19
React Dockerfile for development and production
#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