We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f1da8dc + 3e21ca9 commit e8e280eCopy full SHA for e8e280e
Dockerfile
@@ -25,8 +25,10 @@ RUN pip install --upgrade pip && \
25
pip install --no-cache-dir -r requirements.txt
26
27
COPY data ./data
28
+COPY templates ./templates
29
COPY finmars_standardized_errors ./finmars_standardized_errors
-COPY healthcheck ./healthcheck
30
+COPY healthcheck ./healthcheck
31
+COPY logstash ./logstash
32
COPY poms_app ./poms_app
33
COPY poms ./poms
34
COPY manage.py ./
Makefile
@@ -44,7 +44,9 @@ import-sql:
44
./import-sql.sh
45
46
up:
47
- $(COMPOSE) up --build
+ $(COMPOSE) up --build \
48
+ --remove-orphans \
49
+ --scale migration=0 \
50
51
down:
52
$(COMPOSE) down
0 commit comments