mirror of
https://github.com/status-im/universal-links-handler.git
synced 2025-02-24 16:48:20 +00:00
18 lines
181 B
Docker
18 lines
181 B
Docker
FROM node:12-alpine
|
|
|
|
RUN apk --no-cache add git
|
|
|
|
RUN mkdir -p /srv
|
|
|
|
ADD package.json /srv
|
|
ADD yarn.lock /srv
|
|
|
|
WORKDIR /srv
|
|
|
|
RUN yarn install
|
|
|
|
ADD . /srv
|
|
|
|
CMD yarn start
|
|
EXPOSE 3000
|