Skip to content

Commit 990fc92

Browse files
committed
some updates
1 parent 08a8219 commit 990fc92

5 files changed

Lines changed: 10 additions & 10 deletions

File tree

Dockerfile.iris

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@ RUN npm install \
88
&& export PATH="$PATH:./node_modules/.bin" \
99
&& webpack --mode production
1010

11-
FROM store/intersystems/iris-community:2020.1.0.209.0
11+
FROM containers.intersystems.com/intersystems/iris-community:2020.3.0.200.0
1212

1313
WORKDIR /opt/blocks
1414

1515
USER root
1616

1717
RUN chown ${ISC_PACKAGE_MGRUSER}:${ISC_PACKAGE_IRISGROUP} ${PWD} && \
18-
apt-get -y update && \
19-
DEBIAN_FRONTEND=noninteractive apt-get -y install imagemagick --no-install-recommends && \
20-
rm -rf /var/lib/apt/lists/*
18+
apt-get -y update && \
19+
DEBIAN_FRONTEND=noninteractive apt-get -y install imagemagick --no-install-recommends && \
20+
rm -rf /var/lib/apt/lists/*
2121

2222
USER irisowner
2323

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Generate blocks map as image file in `out` directory
3131
```
3232
docker run -it --rm \
3333
-v /opt/some/database/for/test:/opt/blocks/db/test \
34-
-v `pwd`out:/opt/blocks/out \
34+
-v `pwd`/out:/opt/blocks/out \
3535
daimor/blocksexplorer:cache generate
3636
```
3737

@@ -47,7 +47,7 @@ Generate blocks map as image file in `out` directory
4747
```
4848
docker run -it --rm \
4949
-v /opt/some/database/for/test:/opt/blocks/db/test \
50-
-v `pwd`out:/opt/blocks/out \
50+
-v `pwd`/out:/opt/blocks/out \
5151
daimor/blocksexplorer:iris generate
5252
```
5353

entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ if [ "${COMMAND,,}" = "generate" ]; then
2424
DATABASE=$1
2525
shift
2626
fi
27-
OutputFolder=/out/
27+
OutputFolder=/opt/blocks/out/
2828
CellSize=${1:-1}
2929
CellSpace=${2:-0}
3030
ShowFill=${3:-0}

web/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
FROM node:slim
1+
FROM node:12-slim
22

33
# RUN apk update && apk add git
44

55
WORKDIR /opt/app
66

77
COPY package.json package-lock.json ./
88

9-
RUN npm ci
9+
RUN npm install
1010

1111
ENV PATH="$PATH:./node_modules/.bin"
1212

web/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)