Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 485 Bytes

README.md

File metadata and controls

26 lines (19 loc) · 485 Bytes

Chrome Docker badge

1. Installed packages

Name Version
google-chrome-stable latest
node:slim latest

2. Build Image

docker build -t chrome .

3. Example

FROM mraddict063/chrome
WORKDIR /app
COPY . .
RUN npm install -ci
RUN npm run build

CMD ["npm", "run", "start"]