news-mastodon-bot/Dockerfile
2023-04-10 21:05:02 -05:00

9 lines
251 B
Docker

FROM node:lts
LABEL org.opencontainers.image.description "A Mastodon bot to post a feed of articles from The Verge - @the_verge@mastodon.social"
WORKDIR /build
COPY package.json yarn.lock ./
RUN yarn install --frozen-lockfile
COPY . .
CMD yarn start