sandbox/container/lighthouse-ci-server/Dockerfile
dependabot[bot] e6eb5ddf3f
build(deps): bump node in /container/lighthouse-ci-server
Bumps node from 18-bullseye-slim to 22-bullseye-slim.

---
updated-dependencies:
- dependency-name: node
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-05-23 09:38:19 +00:00

12 lines
263 B
Docker

FROM node:22-bullseye-slim
# Install utilities
RUN apt-get update --fix-missing && apt-get install -y python build-essential && apt-get clean
WORKDIR /usr/src/lhci
COPY package.json .
COPY lighthouserc.json .
RUN npm install
EXPOSE 9001
CMD [ "npm", "start" ]