diff --git a/Containerfile b/Containerfile new file mode 100644 index 0000000..971b0b1 --- /dev/null +++ b/Containerfile @@ -0,0 +1,16 @@ +# originally from https://github.com/henryclw/matrix.to/blob/dev-docker/Dockerfile +FROM node:lts-alpine + +RUN apk update + +WORKDIR /app + +COPY . ./ + +RUN yarn + +RUN yarn build + +EXPOSE 5000 + +ENTRYPOINT ["yarn", "start"]