@toptal/davinci-ci 2.0.6-alpha-fx-add-cypress-happo.15 → 2.0.7-alpha-fx-add-cypress-happo.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Change Log
2
2
 
3
+ ## 2.0.6
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1419](https://github.com/toptal/davinci/pull/1419) [`c03d633a`](https://github.com/toptal/davinci/commit/c03d633aa49c91718c63786c0514ce3d89739124) Thanks [@dependabot](https://github.com/apps/dependabot)! - - Bump @commitlint/config-convetional
8
+
3
9
  ## 2.0.5
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@toptal/davinci-ci",
3
- "version": "2.0.6-alpha-fx-add-cypress-happo.15+222155d5",
3
+ "version": "2.0.7-alpha-fx-add-cypress-happo.4+2df954aa",
4
4
  "description": "Continuos integrations tools for frontend projects",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -32,9 +32,9 @@
32
32
  "dependencies": {
33
33
  "@commitlint/cli": "^17.0.2",
34
34
  "@commitlint/config-conventional": "^17.0.3",
35
- "@toptal/davinci-cli-shared": "1.5.5-alpha-fx-add-cypress-happo.34+222155d5",
35
+ "@toptal/davinci-cli-shared": "1.5.5-alpha-fx-add-cypress-happo.40+2df954aa",
36
36
  "danger": "^11.0.5",
37
37
  "markdown-table": "^2.0.0"
38
38
  },
39
- "gitHead": "222155d59d651252b8e32da4354455e9fc05a15b"
39
+ "gitHead": "2df954aabf5b22fd3beac37137594389b848d79c"
40
40
  }
@@ -0,0 +1,20 @@
1
+ # Create the image with Nginx environment.
2
+ FROM nginx:alpine
3
+
4
+ # Copy results from the dist folder to the image.
5
+ ARG DIST_FOLDER
6
+ RUN [ -z "$DIST_FOLDER" ] && echo "DIST_FOLDER is required" && exit 1 || true
7
+ COPY $DIST_FOLDER /usr/share/nginx/html/storybook
8
+
9
+ # version is used in build process, so the value won't be available here otherwise
10
+ ARG VERSION
11
+ RUN [ -z "$VERSION" ] && echo "VERSION is required" && exit 1 || true
12
+
13
+ RUN echo $VERSION > /usr/share/nginx/html/REVISION.txt
14
+
15
+ # Copy configuration file for Nginx and replace the default one.
16
+ ARG NGINX_CONFIG
17
+ RUN [ -z "$NGINX_CONFIG" ] && echo "NGINX_CONFIG is required" && exit 1 || true
18
+ COPY $NGINX_CONFIG /etc/nginx/conf.d/default.conf
19
+
20
+ CMD ["nginx", "-g", "daemon off;"]