matrix.to/Containerfile

17 lines
214 B
Plaintext
Raw Normal View History

2023-08-07 18:27:33 -04:00
# 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"]