Skip to content

Commit

Permalink
馃敡 fixed the docker config
Browse files Browse the repository at this point in the history
  • Loading branch information
razvanilin committed Aug 1, 2020
1 parent 8de4b56 commit fb30db0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 5 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
FROM node:10

WORKDIR /code
# COPY . .
COPY . .

# install rsync
RUN apt-get update && apt-get upgrade -y && apt-get install -y rsync

RUN npm install
run npm run setup
RUN npm run setup
RUN cd client && npm install
RUN cd server && npm install

Expand Down
2 changes: 0 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,6 @@ services:
- db
links:
- db
volumes:
- .:/code

volumes:
chartbrew-db:

0 comments on commit fb30db0

Please sign in to comment.