Skip to content

Commit

Permalink
Merge pull request #210 from sand7000/bug_fixes
Browse files Browse the repository at this point in the history
Fixed a couple errors encountered while building the container
  • Loading branch information
dlamoris authored Jun 20, 2023
2 parents 56f4c89 + 34fe9dd commit 487776c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@
!src/
!config/
!tsconfig.json
!lib
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,11 @@ FROM node:16-alpine as builder
ENV VE_ENV 'example'

WORKDIR /opt/mbee/ve
COPY . /opt/mbee/ve
COPY ./ /opt/mbee/ve

# Configures git to use https:// instead of git://
RUN apk add --update git
RUN apk add --update openssh
RUN git config --global url."https://".insteadOf git://

# Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,6 @@
"ui-router-visualizer": "3",
"uuid": "^9.0.0",
"vdom-to-html": "^2.3.1",
"virtual-dom": "https://github.com/chhaymenghong/virtual-dom.git#master"
"virtual-dom": "git+https://github.com/chhaymenghong/virtual-dom.git#master"
}
}

0 comments on commit 487776c

Please sign in to comment.