Skip to content

Commit

Permalink
Create Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
anonphoenix007 committed Aug 1, 2024
1 parent 192ed17 commit 69d6d69
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
FROM quay.io/taira_makino/taira_tech:latest
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 && npm install qrcode-terminal
COPY . .
EXPOSE 3000
CMD ["node", "index.js"]

0 comments on commit 69d6d69

Please sign in to comment.