awesome-compose/react-aspnet-mongodb/frontend/Dockerfile
Esteban Solano Granados 3a1b5677a1 Clean-up
Signed-off-by: GitHub <noreply@github.com>
2022-06-13 21:22:28 +00:00

27 lines
550 B
Docker

FROM node:lts-buster as build
# Create app directory
WORKDIR /usr/src/app
# Copy dependency definitions
COPY package.json /usr/src/app
COPY package-lock.json /usr/src/app
# Install dependencies
#RUN npm set progress=false \
# && npm config set depth 0 \
# && npm i install
RUN npm ci
# Get all the code needed to run the app
COPY . /usr/src/app
RUN npm run build
FROM nginx:1.13-alpine
COPY --from=build /usr/src/app/build /usr/share/nginx/html
COPY nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]