Files
voting-example/image-buiild/result/tests/Dockerfile
Renovate Bot 6676d9451c
All checks were successful
renovate / renovate (push) Successful in 37s
Update node Docker tag to v22.3
2024-06-14 00:11:07 +00:00

13 lines
248 B
Docker

FROM node:22.3-slim
RUN apt-get update -qq && apt-get install -qy \
ca-certificates \
bzip2 \
curl \
libfontconfig \
--no-install-recommends
RUN yarn global add phantomjs-prebuilt
ADD . /app
WORKDIR /app
CMD ["/app/tests.sh"]