-
Notifications
You must be signed in to change notification settings - Fork 670
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(monodocs): Containerize the conda-lock executable
Signed-off-by: Chi-Sheng Liu <[email protected]>
- Loading branch information
1 parent
3ad3c40
commit dcbd4bf
Showing
5 changed files
with
787 additions
and
855 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 |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
_build/ | ||
_bin/ | ||
build/ | ||
.tmp_build/ | ||
.vscode/ | ||
*.swp | ||
*.swo | ||
|
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
FROM condaforge/mambaforge:latest | ||
|
||
ARG USER_UID | ||
ARG USER_GID | ||
|
||
RUN groupadd --gid "${USER_GID}" flyte \ | ||
&& useradd --uid "${USER_UID}" --gid "${USER_GID}" -m flyte | ||
|
||
RUN conda install -c conda-forge conda-lock | ||
WORKDIR flyte | ||
USER flyte | ||
ENTRYPOINT ["conda", "run", "--no-capture-output", "conda-lock"] |
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
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
Oops, something went wrong.