Initial commit

This commit is contained in:
Jurgis Sakalauskas
2023-08-28 10:35:08 +03:00
parent 33fedf2171
commit 995ad4c28f
29 changed files with 9311 additions and 1 deletions
+15
View File
@@ -0,0 +1,15 @@
FROM node:18
#install calibre
RUN apt-get update -y
RUN apt-get install -y libopengl0
RUN apt-get install -y libegl1
RUN wget -nv -O- https://download.calibre-ebook.com/linux-installer.sh | sh /dev/stdin
WORKDIR /srv/app
COPY ./ /srv/app
RUN npm install
EXPOSE $PORT
CMD ["npm", "run", "dev"]