Iosevka/docker/Dockerfile
nobk 8114a08f94
Add Docker build with Node.js LTS (#2172)
Co-authored-by: nobk <nobk@noreplay.github.com>
2024-01-17 14:56:30 -08:00

10 lines
286 B
Docker

FROM node:lts-slim
RUN apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y \
apt-transport-https ca-certificates curl ttfautohint \
&& rm -rf /var/lib/apt/lists/*
COPY build.sh /
WORKDIR /work
ENTRYPOINT ["bash", "/build.sh"]