Skip to content

Commit

Permalink
🤖 𝙾𝙿𝙴𝙽 𝙰𝙸 𝙲𝙷𝙰𝚃𝙶𝙿𝚃 𝙱𝙾𝚃 🤖
Browse files Browse the repository at this point in the history
  • Loading branch information
DarkMakerofc authored Jun 8, 2023
1 parent 6356f2e commit eaa119e
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
FROM node:lts-buster

RUN apt-get update && \
apt-get install -y \
ffmpeg \
imagemagick \
webp && \
apt-get upgrade -y && \
rm -rf /var/lib/apt/lists/*

COPY package.json .

RUN npm install

COPY . .

CMD ["node", "."]

0 comments on commit eaa119e

Please sign in to comment.