docker file
This commit is contained in:
12
Dockerfile
Normal file
12
Dockerfile
Normal 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"]
|
||||
Reference in New Issue
Block a user