mirror of
https://github.com/FranP-code/Open-Telegram-to-Notion-Website.git
synced 2025-10-13 00:42:53 +00:00
14 lines
171 B
Docker
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"] |