enzostvs HF staff commited on
Commit
82ce458
β€’
1 Parent(s): 1ed2949

test symlink

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -19,8 +19,8 @@ RUN chmod +x entrypoint.sh
19
  # Expose the application port (assuming your app runs on port 3000)
20
  EXPOSE 3000
21
 
22
- # create symlink for /data/uploads to /static/data/uploads and be retroactive for new uploads
23
- RUN mkdir -p ./static/data && ln -s /static/data/uploads /data/uploads
24
 
25
  # Start the application
26
  ENTRYPOINT ["/usr/src/app/entrypoint.sh"]
 
19
  # Expose the application port (assuming your app runs on port 3000)
20
  EXPOSE 3000
21
 
22
+ # create symlink for /data/uploads to /static/data/uploads
23
+ RUN mkdir -p ./static/data && ln -s /data/uploads ./static/data/uploads
24
 
25
  # Start the application
26
  ENTRYPOINT ["/usr/src/app/entrypoint.sh"]