Skip to content

Commit

Permalink
fix retrieved file path
Browse files Browse the repository at this point in the history
  • Loading branch information
allgood committed Oct 5, 2024
1 parent d1081e0 commit 4fbec54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ EXPOSE 3000

CMD dockerize -wait tcp://${DB_HOST}:5432 -timeout 60s \
&& npx sequelize db:migrate --config dist/config/database.js --migrations-path dist/database/migrations \
&& ./scripts/load-retrieved.sh /retrieved; exit_code=$? \
&& ./scripts/load-retrieved.sh /retrieve; exit_code=$? \
&& if [ $exit_code -eq 1 ]; then npm run mark-seeds; exit 0; elif [ $exit_code -ge 100 ]; then exit 1; fi \
&& npx sequelize db:seed:all --config dist/config/database.js --seeders-path dist/database/seeds \
&& node dist/server.js

0 comments on commit 4fbec54

Please sign in to comment.