This commit is contained in:
Lukian LEIZOUR 2024-12-27 00:58:42 +01:00
parent f062c0e5c2
commit 7525503f3e

View file

@ -1,7 +1,8 @@
FROM denoland/deno:latest
WORKDIR /app
COPY . .
RUN apt-get update && apt-get install -y \
RUN apt-get update \
&& apt-get install -y \
build-essential \
libcairo2-dev \
libpango1.0-dev \
@ -9,7 +10,6 @@ RUN apt-get update && apt-get install -y \
librsvg2-dev \
nodejs \
npm \
&& deno install --allow-scripts=npm:canvas \
&& deno install --allow-scripts \
&& rm -rf /var/lib/apt/lists/*
CMD ["deno", "run", "start"]