dvm-video-thumbnails/Dockerfile

10 lines
121 B
Docker
Raw Normal View History

2024-04-29 08:09:59 +00:00
FROM node:20-alpine
WORKDIR /app
COPY . /app/
RUN yarn install
RUN yarn build
ENTRYPOINT [ "node", "build/index.js" ]