e6eb5ddf3f
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>
12 lines
263 B
Docker
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" ]
|