-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ENH] Run the sysdb migration in sh so we can do env var substitition
- Loading branch information
Showing
2 changed files
with
11 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,9 @@ | ||
FROM arigaio/atlas:latest | ||
workdir /app | ||
FROM debian:bookworm-slim | ||
|
||
RUN apt update | ||
RUN apt upgrade -y | ||
RUN apt install -y curl | ||
RUN curl -sSf https://atlasgo.sh | sh -s -- --community | ||
|
||
COPY ./go/migrations migrations | ||
COPY ./go/atlas.hcl atlas.hcl |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters