mirror of
https://github.com/vector-im/hydrogen-web.git
synced 2024-11-20 11:36:24 +01:00
8 lines
133 B
Docker
8 lines
133 B
Docker
|
FROM node:alpine3.12
|
||
|
RUN apk add --no-cache git
|
||
|
COPY . /code
|
||
|
WORKDIR /code
|
||
|
RUN yarn install
|
||
|
EXPOSE 3000
|
||
|
ENTRYPOINT ["yarn", "start"]
|