[demo] Correct issues with pulling Git repos during build. (#154)

Bump to 1.4.5.
This commit is contained in:
Justin D. Harris 2022-06-22 15:14:12 -04:00 коммит произвёл GitHub
Родитель d50881fc33
Коммит cc42f5680e
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
4 изменённых файлов: 6 добавлений и 2 удалений

Просмотреть файл

@ -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