docker file

This commit is contained in:
Eau
2026-06-15 03:10:34 -05:00
commit d6da982fa2
2 changed files with 29 additions and 0 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM node:22-alpine
RUN apk add --no-cache --virtual .gyp \
python3 \
make \
g++ \
&& npm install \
-g obsidian-headless \
&& apk del .gyp
WORKDIR /app
COPY ./app.sh /app/run.sh
ENTRYPOINT ["sh"]