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:
parent
13ff97e4d3
commit
8b5176f261
15
Dockerfile
Normal file
15
Dockerfile
Normal 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" ]
|
Loading…
Reference in New Issue
Block a user