-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(docker): release image on stable, copy missing scripts and use fi…
…xed version of ncr (#190) * ci: do test on main and release docker on stable * fix: copy more scripts in docker image and use fixed version of ncr * fix(Dockerfile): ncr image resolution * ci: run tests on PR to main and docker release on stable * ci: remove dependency between jobs
- Loading branch information
1 parent
b112cd0
commit c6683d1
Showing
2 changed files
with
9 additions
and
3 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
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,11 +1,14 @@ | ||
FROM ghcr.io/forkbombeu/ncr:latest | ||
FROM ghcr.io/forkbombeu/ncr@sha256:437b10cbc871a253baf5b387c72fde04f64e8e906e475b723936f5a857a5c32b | ||
|
||
RUN apt update && apt install -y jq make && rm -rf /var/lib/apt/lists/* | ||
|
||
WORKDIR /app | ||
|
||
COPY --chmod=777 scripts/autorun_search.sh scripts/autorun_search.sh | ||
COPY --chmod=777 scripts/autorun_store.sh scripts/autorun_store.sh | ||
COPY --chmod=777 scripts/authorize.sh scripts/authorize.sh | ||
COPY --chmod=777 scripts/up.sh scripts/up.sh | ||
|
||
COPY Makefile Makefile | ||
|
||
ENV FILES_DIR=. |