diff --git a/Makefile b/Makefile index a4043ea69..2a468cd21 100644 --- a/Makefile +++ b/Makefile @@ -88,8 +88,7 @@ bin/uniworxdb: .stack-work.lock stack build --fast --flag uniworx:-library-only --copy-bins\ --local-bin-path\ $$(pwd)/bin\ --flag\ uniworx:-dev .PHONY: frontend-% -frontend-%: node_modules well-known -frontend-%: --frontend-%; +frontend-%: node_modules well-known --frontend-%; .PHONY: --frontend-build --frontend-build: diff --git a/docker/backend/Dockerfile b/docker/backend/Dockerfile index cbc328792..a399e7890 100644 --- a/docker/backend/Dockerfile +++ b/docker/backend/Dockerfile @@ -9,4 +9,4 @@ RUN apt-get -y install libghc-zlib-dev libpq-dev WORKDIR /fradrive ENV FRADRIVE_MAKE_TARGET=backend-build -ENTRYPOINT pwd && ls -a . && make -- ${FRADRIVE_MAKE_TARGET} \ No newline at end of file +ENTRYPOINT make -- ${FRADRIVE_MAKE_TARGET} \ No newline at end of file diff --git a/docker/frontend/Dockerfile b/docker/frontend/Dockerfile index 77f78daf3..4cbc8560f 100644 --- a/docker/frontend/Dockerfile +++ b/docker/frontend/Dockerfile @@ -23,4 +23,4 @@ WORKDIR /fradrive # RUN chown -R `id -u`:`id -g` "/.npm" ENV FRADRIVE_MAKE_TARGET=frontend-build -ENTRYPOINT make node_modules && make -- ${FRADRIVE_MAKE_TARGET} \ No newline at end of file +ENTRYPOINT make -- ${FRADRIVE_MAKE_TARGET} \ No newline at end of file