From 145569fcc210b2baed8aeda2dbd17dff246dadc0 Mon Sep 17 00:00:00 2001 From: Steve Date: Mon, 7 Aug 2023 18:27:33 -0400 Subject: [PATCH] add container file --- Containerfile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Containerfile 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"]