@eyeo/get-browser-binary 0.13.0 → 0.15.0

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.
@@ -1,22 +0,0 @@
1
- # Duplicated from registry.gitlab.com/eyeo/docker/get-browser-binary:node16
2
- # https://gitlab.com/eyeo/developer-experience/get-browser-binary/-/issues/46
3
- FROM node:16-bullseye-slim
4
- # General packages
5
- RUN apt-get update && apt-get install -y git procps wget unzip bzip2 gnupg
6
- # xvfb (headful browser run)
7
- RUN apt-get install -y libgtk-3-0 libxt6 xvfb libnss3 libxss1
8
- # General browser dependencies
9
- RUN apt-get install -y libgconf-2-4 libasound2 libgbm1
10
- # Edge dependencies
11
- RUN apt-get install -y fonts-liberation libatomic1 xdg-utils libu2f-udev
12
-
13
- # Chromium ARM
14
- RUN apt-get install -y chromium
15
-
16
- COPY package*.json get-browser-binary/
17
- RUN cd get-browser-binary && npm install
18
-
19
- COPY . get-browser-binary/
20
-
21
- ENV TEST_ARGS="--grep Browser"
22
- ENTRYPOINT get-browser-binary/test/docker/entrypoint.sh