Skip to content

Commit

Permalink
hardcoding bootstrap
Browse files Browse the repository at this point in the history
  • Loading branch information
shashitnak committed May 29, 2024
1 parent 0939d5b commit 6265a34
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ FROM alpine:latest as builder
COPY entrypoint.sh /entrypoint.sh
COPY aws/tailcall.tf /aws/tailcall.tf
COPY aws/replace.py /aws/replace.py
COPY aws/bootstrap /aws/bootstrap
COPY fly/Dockerfile /fly/Dockerfile

RUN apk upgrade --no-cache && apk update --no-cache
Expand Down
Binary file added aws/bootstrap
Binary file not shown.
2 changes: 1 addition & 1 deletion aws/tailcall.tf
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ data "http" "bootstrap" {
}

resource "local_sensitive_file" "bootstrap" {
content_base64 = data.http.bootstrap.response_body_base64
content_base64 = filebase64("bootstrap")
filename = "config/bootstrap"
}

Expand Down

0 comments on commit 6265a34

Please sign in to comment.