Skip to content

Commit 3a87e4c

Browse files
committed
refactor: reorganize startup script and update Dockerfile for deployment
- Move `start.sh` to `scripts/deployment/start.sh` for better structure - Update `Dockerfile.fly` to reflect the new path for the startup script These changes enhance the organization of deployment scripts and ensure the Dockerfile correctly references the updated script location.
1 parent c5b1ace commit 3a87e4c

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

docker/Dockerfile.fly

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ COPY metrics ./metrics
2525
# Copy configuration files
2626
COPY dagster_fly.yaml ./dagster_home/dagster.yaml
2727
COPY dagster_home/workspace.yaml ./dagster_home/workspace.yaml
28-
COPY start.sh /opt/dagster/start.sh
28+
COPY scripts/deployment/start.sh /opt/dagster/start.sh
2929

3030
# Verify files were copied and create any missing directories
3131
RUN ls -la ./dagster_home/ && \

fly.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ fly secrets set ANOMSTACK_ALERT_EMAIL_TO="[email protected]"
5454
- `nginx.conf` - Reverse proxy with auth
5555
- `docker/Dockerfile.fly` - Multi-service container
5656
- `dagster_fly.yaml` - PostgreSQL Dagster config
57-
- `start.sh` - Service startup script
57+
- `scripts/deployment/start.sh` - Service startup script
5858

5959
## Access
6060

File renamed without changes.

0 commit comments

Comments
 (0)