Skip to content

Commit 42e145b

Browse files
authored
Refactor
- Adds a client to easily interface with the datafeed-cache API, using reqwest. - Move types to a shared location to enable easier modifications in the future
1 parent f6a9566 commit 42e145b

22 files changed

Lines changed: 1728 additions & 879 deletions

File tree

.dockerignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
debug/
2+
target/
3+
4+
.github/
5+
.idea/
6+
.vscode/
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@ jobs:
3232

3333
- name: Build and push Docker image
3434
run: |
35-
docker build --pull --build-arg COM_SHA=${{ env.SHORT_SHA }} -t ${{ env.REGISTRY }}/${{ github.repository }}:${{ env.SHORT_SHA }} .
35+
docker build --pull --build-arg COM_SHA=${{ env.SHORT_SHA }} -t ${{ env.REGISTRY }}/${{ github.repository }}:${{ env.SHORT_SHA }} -f ./datafeed-cache-server/Dockerfile .
3636
docker push ${{ env.REGISTRY }}/${{ github.repository }}:${{ env.SHORT_SHA }}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@ jobs:
3232

3333
- name: Build and push Docker image
3434
run: |
35-
docker build --pull --build-arg COM_SHA=${{ env.SHORT_SHA }} -t ${{ env.REGISTRY }}/${{ github.repository }}:latest .
35+
docker build --pull --build-arg COM_SHA=${{ env.SHORT_SHA }} -t ${{ env.REGISTRY }}/${{ github.repository }}:latest -f ./datafeed-cache-server/Dockerfile .
3636
docker push ${{ env.REGISTRY }}/${{ github.repository }}:latest

0 commit comments

Comments
 (0)