Implement new UI
This commit is contained in:
@ -8,10 +8,10 @@ sh: ##
|
||||
@docker-compose exec twenty sh
|
||||
|
||||
front-test: ##
|
||||
@docker-compose exec twenty sh -c "npm run test"
|
||||
@docker-compose exec twenty sh -c "cd front && npm run test"
|
||||
|
||||
front-coverage: ##
|
||||
@docker-compose exec twenty sh -c "npm run coverage"
|
||||
@docker-compose exec twenty sh -c "cd front && npm run coverage"
|
||||
|
||||
front-storybook: ##
|
||||
@docker-compose exec twenty sh -c "npm run storybook"
|
||||
@docker-compose exec twenty sh -c "cd front && npm run storybook"
|
||||
|
||||
@ -1,5 +1,9 @@
|
||||
FROM node:18-alpine as app
|
||||
|
||||
RUN apk update && apk upgrade && \
|
||||
apk add --no-cache bash git openssh && \
|
||||
apk add libc6-compat
|
||||
|
||||
WORKDIR /app
|
||||
COPY ../.. .
|
||||
|
||||
|
||||
Reference in New Issue
Block a user