Skip to content

Commit

Permalink
fix: Unintentionally removed a startup script alias
Browse files Browse the repository at this point in the history
  • Loading branch information
aweiland authored and mbanting committed Jan 31, 2025
1 parent 44f1071 commit 119cd2b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions compose/fastapi/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ COPY ./ ./
COPY --chown=code:code ./compose/fastapi/entrypoint /fastapi-entrypoint
RUN sed -i 's/\r$//g' /fastapi-entrypoint && chmod +x /fastapi-entrypoint

# Copy to fastapi-start to not break current ECS task config
# Copy to fastapi-start and fastapi-start-datadog to not break current ECS task config
COPY --chown=code:code ./compose/fastapi/start-backend-datadog /start-backend-datadog
RUN sed -i 's/\r$//g' /start-backend-datadog && chmod +x /start-backend-datadog && \
cp /start-backend-datadog /fastapi-start
cp /start-backend-datadog /fastapi-start && cp /start-backend-datadog /fastapi-start-datadog

# Migration script
COPY --chown=code:code ./compose/fastapi/migrate /fastapi-migrate
Expand Down

0 comments on commit 119cd2b

Please sign in to comment.