Skip to content

Commit 456edce

Browse files
Merge pull request #33 from geoCML/smarter-recommendation-algo
Smarter recommendation algo
2 parents c2e6096 + c07f5b9 commit 456edce

10 files changed

+263
-394
lines changed

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.txt filter=lfs diff=lfs merge=lfs -text

Dockerfiles/Dockerfile.drgon-server

+9
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,17 @@ RUN bash nodesource_setup.sh
1313
RUN rm nodesource_setup.sh
1414
RUN apt install -y nodejs
1515

16+
# Install build essentials
17+
RUN apt install -y build-essential
18+
1619
# Install npm dependencies
1720
RUN npm i
1821

22+
# Remove build essentials
23+
RUN apt remove -y build-essential
24+
25+
# Remove install cache
26+
RUN apt clean autoclean && apt autoremove -y && rm -rf /var/lib/{apt,dpkg,cache,log}/
27+
1928
# Start DRGON server
2029
CMD npm run start

ansible-playbooks/drgon-postgres-playbook.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@
3838
community.postgresql.postgresql_table:
3939
table: registry
4040
columns:
41-
- id bigint
4241
- url text primary key
4342
- title text
4443
- description text

0 commit comments

Comments
 (0)