matrix.to/Containerfile

17 lines
214 B
Docker

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