Mbonea commited on
Commit
d3069fb
1 Parent(s): e32956e

returned everything to normal

Browse files
Files changed (2) hide show
  1. App/Worker.py +1 -1
  2. Dockerfile +1 -1
App/Worker.py CHANGED
@@ -86,7 +86,7 @@ def celery_task(video_task: EditorRequest):
86
 
87
  chain(
88
  copy_remotion_app.si(remotion_app_dir, temp_dir),
89
- # install_dependencies.si(temp_dir),
90
  download_assets.si(video_task.links, temp_dir) if video_task.links else None,
91
  render_video.si(temp_dir, output_dir),
92
  cleanup_temp_directory.si(temp_dir, output_dir),
 
86
 
87
  chain(
88
  copy_remotion_app.si(remotion_app_dir, temp_dir),
89
+ install_dependencies.si(temp_dir),
90
  download_assets.si(video_task.links, temp_dir) if video_task.links else None,
91
  render_video.si(temp_dir, output_dir),
92
  cleanup_temp_directory.si(temp_dir, output_dir),
Dockerfile CHANGED
@@ -52,7 +52,7 @@ RUN echo npm -v
52
  RUN node -v
53
 
54
  #install the stuff
55
- RUN cd /srv/Remotion-app && npm install
56
 
57
 
58
 
 
52
  RUN node -v
53
 
54
  #install the stuff
55
+ # RUN cd /srv/Remotion-app && npm install
56
 
57
 
58