fix add dataset
Browse files- 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"]
|