1
0
mirror of https://github.com/vector-im/hydrogen-web.git synced 2025-01-10 04:06:34 +01:00

8 lines
133 B
Docker
Raw Normal View History

FROM node:alpine3.12
RUN apk add --no-cache git
COPY . /code
WORKDIR /code
RUN yarn install
EXPOSE 3000
ENTRYPOINT ["yarn", "start"]