Skip to content

Instantly share code, notes, and snippets.

@enqtran
Last active December 29, 2022 15:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save enqtran/ad58cd3cc6e30a99e464b611db2198f2 to your computer and use it in GitHub Desktop.
Save enqtran/ad58cd3cc6e30a99e464b611db2198f2 to your computer and use it in GitHub Desktop.
# pull official base image
FROM node:14 AS builder
# set working directory
WORKDIR /app
# install app dependencies
#copies package.json and package-lock.json to Docker environment
COPY package.json ./
# Installs all node packages
RUN npm install
# Copies everything over to Docker environment
COPY . ./
RUN npm run build
#Stage 2
#######################################
#pull the official nginx:1.19.0 base image
FROM nginx:1.19.0
#copies React to the container directory
# Set working directory to nginx resources directory
WORKDIR /usr/share/nginx/html
# Remove default nginx static resources
RUN rm -rf ./*
# Copies static resources from builder stage
COPY --from=builder /app/build .
EXPOSE 8080
# Containers run nginx with global directives and daemon off
ENTRYPOINT ["nginx", "-g", "daemon off;"]
@enqtran
Copy link
Author

enqtran commented Dec 29, 2022

docker build -t example-react-app .
docker run — rm -it -p 8080:80 example-react-app

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment