wwforonce commited on
Commit
ab6ce8e
·
1 Parent(s): 990ea61

fix add dataset

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -24,9 +24,9 @@ RUN mkdir -p /app/readeck/data && chmod 777 /app/readeck/data
24
 
25
  # Copy sync scripts
26
  COPY sync_storage.py /app/sync_storage.py
27
- COPY start_with_sync.sh /start.sh
28
  # Make scripts executable
29
- RUN chmod +x /app/sync_storage.py /start.sh
30
  # Start with sync
31
- ENTRYPOINT ["/start.sh"]
32
  # CMD ["/bin/readeck","serve", "-config", "/app/readeck/config.toml"]
 
24
 
25
  # Copy sync scripts
26
  COPY sync_storage.py /app/sync_storage.py
27
+ COPY start_with_sync.sh /app/start.sh
28
  # Make scripts executable
29
+ RUN chmod +x /app/sync_storage.py /app/start.sh
30
  # Start with sync
31
+ ENTRYPOINT ["/app/start.sh"]
32
  # CMD ["/bin/readeck","serve", "-config", "/app/readeck/config.toml"]