Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for moonbeam evm #30

Merged
merged 2 commits into from
Aug 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-and-push-ecr-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
# - name: Check out code
# uses: actions/checkout@v3
# - name: Run tests
# run: docker-compose -f docker-compose.test.yml run server npm test
# run: docker compose -f docker-compose.test.yml run server npm test

build-push:
name: Build image and push to ECR(tokenguard-dev)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-and-push-ecr-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
# - name: Check out code
# uses: actions/checkout@v3
# - name: Run tests
# run: docker-compose -f docker-compose.test.yml run server npm test
# run: docker compose -f docker-compose.test.yml run server npm test

build-push:
name: Build and push to ECR(tokenguard-prod)
Expand Down
2 changes: 1 addition & 1 deletion Dev.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ FROM node:18-alpine
WORKDIR /app

COPY package*.json ./
RUN npm install
RUN npm install -g ts-node-dev
RUN npm install --prefer-dedupe

COPY ./ ./
RUN npm run build
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ USER node

COPY --chown=node:node package.json ./

RUN npm install
RUN npm install --prefer-dedupe
COPY --chown=node:node . .
RUN npm run build
EXPOSE 8080
Expand Down
Loading
Loading