1
0
mirror of https://github.com/trezor/trezor-wallet synced 2024-11-23 16:58:28 +00:00

Added docker file

This commit is contained in:
Vladimir Volek 2018-10-02 15:01:47 +02:00 committed by Szymon Lesisz
parent 13ff97e4d3
commit 8b5176f261

15
Dockerfile Normal file
View File

@ -0,0 +1,15 @@
FROM node:8
WORKDIR /trezor-wallet-app
COPY package.json /trezor-wallet-app
COPY yarn.lock /trezor-wallet-app
RUN yarn install
COPY . /trezor-wallet-app
RUN yarn run build:prod
EXPOSE 8080
CMD [ "yarn", "run", "prod-server" ]