/
austin_s
/
react-interview-components
Обзор
Документация
Войти
/
austin_s
/
react-interview-components
Код
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Dockerfile
14 строк
338 B
spanic
Adds CI/CD: build & push to Artifact Registry
02 фев 2025, 23:11
02 фев 2025, 23:11
095e740
Код
Авторство
О чём код?
# Build Stage FROM node:20-alpine AS build WORKDIR /app COPY package*.json ./ RUN npm ci COPY . . RUN npm run build:docs RUN npm prune --production # Production Stage FROM nginxinc/nginx-unprivileged:stable-alpine AS production COPY --from=build /app/storybook-static /usr/share/nginx/html EXPOSE 8080 CMD ["nginx", "-g", "daemon off;"]