Skip to content
Merged
Prev Previous commit
Next Next commit
refactor: TT-511 solve comments
  • Loading branch information
mikevillarruel committed Feb 9, 2022
commit 55d06c231e6fa044de3a590cb6e82fedbfe0f4a4
3 changes: 1 addition & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,5 @@ FROM node:14

WORKDIR /time-tracker-ui

COPY package*.json .
RUN npm cache clean --force && npm install
COPY . .
RUN npm cache clean --force && npm install
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
help:
@echo "---------------HELP-----------------"
@echo "- make build --> Create docker image with dependencies needed"
@echo "- make run --> Execute docker container database from postgres, and api from image created previusly"
@echo "- make run --> Execute timetracker_ui docker container"
@echo "- make stop --> Stop container"
@echo "- make remove --> Restart container"
@echo "- make remove --> Delete container"
Expand Down