inital release
This commit is contained in:
commit
1d708c14cf
26 changed files with 34335 additions and 0 deletions
23
Dockerfile
Normal file
23
Dockerfile
Normal file
|
@ -0,0 +1,23 @@
|
|||
FROM node
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY package*.json ./
|
||||
|
||||
RUN npm install
|
||||
|
||||
RUN apt update -y
|
||||
RUN apt install python3 -y
|
||||
RUN apt install ffmpeg -y
|
||||
|
||||
COPY deps/ ./deps/
|
||||
COPY public/ ./public/
|
||||
COPY server.js ./
|
||||
COPY middleware/ ./middleware/
|
||||
COPY routes/ ./routes/
|
||||
COPY cookies.txt ./
|
||||
|
||||
|
||||
EXPOSE 3000
|
||||
|
||||
CMD ["node", "server.js"]
|
Loading…
Add table
Add a link
Reference in a new issue