Skip to content

Commit

Permalink
base 12.14.1 (#329)
Browse files Browse the repository at this point in the history
  • Loading branch information
flotwig committed Jun 24, 2020
1 parent 6889983 commit beb631b
Show file tree
Hide file tree
Showing 5 changed files with 89 additions and 0 deletions.
59 changes: 59 additions & 0 deletions base/12.14.1/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
# WARNING: this file was autogenerated by generate-base-image.js
# contains all dependencies for running Cypress.io Test Runner
# https://on.cypress.io/docker and https://on.cypress.io/ci
#
# build it with command
# docker build -t cypress/base:12.14.1 .
#
FROM node:12.14.1-buster

RUN apt-get update && \
apt-get install --no-install-recommends -y \
libgtk2.0-0 \
libgtk-3-0 \
libnotify-dev \
libgconf-2-4 \
libgbm-dev \
libnss3 \
libxss1 \
libasound2 \
libxtst6 \
xauth \
xvfb \
# install Chinese fonts
# this list was copied from https://github.com/jim3ma/docker-leanote
fonts-arphic-bkai00mp \
fonts-arphic-bsmi00lp \
fonts-arphic-gbsn00lp \
fonts-arphic-gkai00mp \
fonts-arphic-ukai \
fonts-arphic-uming \
ttf-wqy-zenhei \
ttf-wqy-microhei \
xfonts-wqy \
# clean up
&& rm -rf /var/lib/apt/lists/*

RUN npm install -g npm@latest
RUN npm --version

RUN npm install -g yarn@latest --force
RUN yarn --version

# a few environment variables to make NPM installs easier
# good colors for most applications
ENV TERM xterm
# avoid million NPM install messages
ENV npm_config_loglevel warn
# allow installing when the main user is root
ENV npm_config_unsafe_perm true

# Node libraries
RUN node -p process.versions

# versions of local tools
RUN echo " node version: $(node -v) \n" \
"npm version: $(npm -v) \n" \
"yarn version: $(yarn -v) \n" \
"debian version: $(cat /etc/debian_version) \n" \
"user: $(whoami) \n"
18 changes: 18 additions & 0 deletions base/12.14.1/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<!-- WARNING: this file was autogenerated by generate-base-image.js -->
# cypress/base:12.14.1

A Docker image with all dependencies pre-installed.
Just add your NPM packages (including Cypress) and run the tests.
See [Cypress Docker docs](https://on.cypress.io/docker) and
[Cypress CI guide](https://on.cypress.io/ci).

## Example

Sample Dockerfile

```
FROM cypress/base:12.14.1
RUN npm install --save-dev cypress
RUN $(npm bin)/cypress verify
RUN $(npm bin)/cypress run
```
8 changes: 8 additions & 0 deletions base/12.14.1/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# WARNING: this file was autogenerated by generate-base-image.js
set e+x

# build image with Cypress dependencies
LOCAL_NAME=cypress/base:12.14.1

echo "Building $LOCAL_NAME"
docker build -t $LOCAL_NAME .
1 change: 1 addition & 0 deletions base/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ cypress/base:12.8.1 | 12.8.1 | Debian | [/12.8.1](12.8.1) | 6.13.7 | 1.22.0 | [1
cypress/base:12.12.0 | 12.12.0 | Debian | [/12.12.0](12.12.0) | 6.12.0 | 1.19.1 | [1](#note1)
cypress/base:12.13.0 | 12.13.0 | Debian | [/12.13.0](12.13.0) | 6.13.0 | 1.19.1 | [1](#note1)
cypress/base:12.14.0 | 12.14.0 | Debian | [/12.14.0](12.14.0) | 6.13.4 | 1.21.1 | [1](#note1)
cypress/base:12.14.1 | 12.14.1 | Debian | [/12.14.1](12.14.1) | 6.14.5 | 1.22.4 | [1](#note1)
cypress/base:12.16.0 | 12.16.0 | Debian | [/12.16.0](12.16.0) | 6.13.7 | 1.22.0 | [1](#note1)
cypress/base:12.16.1 | 12.16.1 | Debian | [/12.16.1](12.16.1) | 6.14.1 | 1.22.0 | [1](#note1)
cypress/base:12.16.2 | 12.16.2 | Debian | [/12.16.2](12.16.2) | 6.14.5 | 1.22.4 | [1](#note1)
Expand Down
3 changes: 3 additions & 0 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -354,6 +354,9 @@ workflows:
- build-base-image:
name: "base 12.14.0"
dockerTag: "12.14.0"
- build-base-image:
name: "base 12.14.1"
dockerTag: "12.14.1"
- build-base-image:
name: "base 12.16.0"
dockerTag: "12.16.0"
Expand Down

0 comments on commit beb631b

Please sign in to comment.