Files
Open-Telegram-to-Notion-Web…/Dockerfile
2022-12-15 20:44:44 -03:00

14 lines
171 B
Docker

FROM alpine:latest
RUN apk add --update nodejs npm
RUN npm install --global yarn
COPY [".", "/usr/src"]
WORKDIR "/usr/src"
RUN yarn
EXPOSE 3000
CMD ["yarn", "start"]