add container file

This commit is contained in:
stryan 2023-08-07 18:27:33 -04:00
parent c1dc85ec72
commit 145569fcc2
1 changed files with 16 additions and 0 deletions

16
Containerfile Normal file
View File

@ -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"]