[demo] Correct issues with pulling Git repos during build. (#154)
Bump to 1.4.5.
This commit is contained in:
Родитель
d50881fc33
Коммит
cc42f5680e
|
@ -12,4 +12,6 @@ RUN apt-get update && apt-get install --yes byobu locales locales-all
|
|||
COPY setup.sh setup_libs.sh package.json yarn.lock ./
|
||||
COPY client/package.json client/yarn.lock client/
|
||||
|
||||
# Avoid issues with pulling Git repos during the build.
|
||||
RUN git config --global url."https://".insteadOf git://
|
||||
RUN bash setup.sh
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "decai-demo-client",
|
||||
"version": "1.4.4",
|
||||
"version": "1.4.5",
|
||||
"license": "MIT",
|
||||
"private": true,
|
||||
"proxy": "http://localhost:5387/",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "decai-demo",
|
||||
"version": "1.4.4",
|
||||
"version": "1.4.5",
|
||||
"license": "MIT",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
|
|
|
@ -23,6 +23,8 @@ RUN apt-get update && apt-get install --fix-missing --yes build-essential git lo
|
|||
COPY client ./client
|
||||
COPY package.json server.js setup.sh setup_libs.sh yarn.lock ./
|
||||
|
||||
# Avoid issues with pulling Git repos during the build.
|
||||
RUN git config --global url."https://".insteadOf git://
|
||||
RUN NODE_ENV='production' bash setup.sh
|
||||
|
||||
RUN cd client && npx --no-install truffle compile
|
||||
|
|
Загрузка…
Ссылка в новой задаче