Created
October 24, 2023 07:33
-
-
Save Pranit-Harekar/b5be3d161748ec9cf8f2d107a19560cb to your computer and use it in GitHub Desktop.
Zscaler + Docker Issue
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM node:16-buster-slim | |
| RUN apt-get -y update && \ | |
| apt-get -y install \ | |
| bash \ | |
| curl \ | |
| libharfbuzz-dev \ | |
| libharfbuzz-bin \ | |
| libnss3 \ | |
| libfreetype6 \ | |
| fonts-freefont-ttf \ | |
| chromium \ | |
| git \ | |
| python3 \ | |
| make \ | |
| wget \ | |
| phantomjs \ | |
| build-essential \ | |
| libcairo2-dev \ | |
| libpango1.0-dev \ | |
| libjpeg-dev \ | |
| libgif-dev \ | |
| librsvg2-dev \ | |
| && rm -rf /var/cache/* | |
| CMD ['echo', 'Package installed successfully!'] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment