1
0
mirror of https://github.com/vector-im/hydrogen-web.git synced 2025-01-12 13:07:17 +01:00

8 lines
158 B
Plaintext
Raw Normal View History

FROM docker.io/node:alpine
2021-09-29 19:31:39 -07:00
RUN apk add --no-cache git python3 build-base
COPY . /code
WORKDIR /code
RUN yarn install
EXPOSE 3000
ENTRYPOINT ["yarn", "start"]