Skip to content

Commit

Permalink
Bump 0.1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
bmaz committed Jul 23, 2024
1 parent 983c797 commit ae9c9e2
Show file tree
Hide file tree
Showing 6 changed files with 56 additions and 6 deletions.
3 changes: 1 addition & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@ RUN mkdir /resin-backend

RUN apk update && \
apk add nodejs=~20 npm=~10 && \
apk add bash && \
apk add at
apk add bash

ENV BACKEND_PORT=8000
ENV BACKEND_HOST=django
Expand Down
2 changes: 1 addition & 1 deletion docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ export NS=$(cat /etc/resolv.conf | grep nameserver | awk -F " " '{print $2}')

envsubst '\$NS \$BACKEND_HOST \$BACKEND_PORT' < /etc/nginx/nginx.conf.template > /etc/nginx/nginx.conf

echo "sleep 5 ; npm run build" | at now
echo "sleep 5 ; npm run build" | bash &

nginx -g "daemon off;"
2 changes: 1 addition & 1 deletion k8s/overlays/prod/sciencespo/kustomization.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ images:
- name: scpomedialab/resin-annuaire-backend
newTag: "0.2.0"
- name: scpomedialab/resin-annuaire
newTag: "0.1.8"
newTag: "0.1.9"
51 changes: 51 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
},
"homepage": "https://github.com/medialab/resin-annuaire#readme",
"dependencies": {
"@adobe/node-fetch-retry": "^2.2.0",
"@medialab/resin-formulaire": "github:medialab/resin-formulaire",
"concurrently": "^8.2.2",
"csvtojson": "^2.0.10",
Expand All @@ -34,7 +35,6 @@
"lodash": "^4.17.21",
"mime": "^3.0.0",
"mocha": "^10.2.0",
"node-fetch": "^2.7.0",
"nodemon": "^3.0.2",
"nunjucks": "^3.2.4",
"pandemonium": "^2.4.1",
Expand Down
2 changes: 1 addition & 1 deletion src/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const fs = require("fs-extra");
const yaml = require("js-yaml");
const csv = require("csvtojson");
const kotatsu = require("kotatsu");
const fetch = require("node-fetch");
const fetch = require("@adobe/node-fetch-retry");
const nunjucks = require("nunjucks");
const { sortBy } = require("lodash");
const { promisify } = require("util");
Expand Down

0 comments on commit ae9c9e2

Please sign in to comment.