-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1626 from IntersectMBO/develop
Sancho-v1.0.11-dev
- Loading branch information
Showing
10 changed files
with
10,482 additions
and
3,035 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
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
ARG BASE_IMAGE_TAG=latest | ||
ARG BASE_IMAGE_REPO=ghcr.io/intersectmbo/backend-base | ||
FROM $BASE_IMAGE_REPO:$BASE_IMAGE_TAG | ||
WORKDIR /src | ||
COPY . . | ||
RUN cabal build | ||
RUN cp dist-newstyle/build/x86_64-linux/ghc-9.2.7/vva-be-1.0.11/x/vva-be/build/vva-be/vva-be /usr/local/bin | ||
|
||
# Expose the necessary port | ||
EXPOSE 9876 | ||
|
||
# Default command (can be overridden by docker-compose or docker run) | ||
CMD ["/usr/local/bin/vva-be", "-c", "/run/secrets/backend-config.json", "start-app"] |
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,6 +1,6 @@ | ||
cabal-version: 3.6 | ||
name: vva-be | ||
version: 1.0.10 | ||
version: 1.0.11 | ||
|
||
-- A short (one-line) description of the package. | ||
-- synopsis: | ||
|
@@ -20,7 +20,6 @@ maintainer: [email protected] | |
-- copyright: | ||
-- category: | ||
extra-source-files: | ||
CHANGELOG.md | ||
sql/get-voting-power.sql | ||
sql/list-dreps.sql | ||
sql/get-delegates.sql | ||
|
Oops, something went wrong.