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

Fixed Imports for Docker and changed values for K8 #338

Merged
merged 5 commits into from
Feb 26, 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 config/kubernetes/.sp_magi.env
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ SYNC_MODE=full
DEVNET=true
# Local sequencer flags
SEQUENCER=true
SEQUENCER_MAX_SAFE_LAG=100
SEQUENCER_MAX_SAFE_LAG=200
SEQUENCER_PK_FILE=./sequencer_pk.txt
WATCHER_DELAY=4000
8 changes: 4 additions & 4 deletions docker/specular.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,12 @@ RUN npm install -g pnpm
RUN pnpm install


# COPY --from=build /specular/config/local_docker /specular/workspace
# COPY --from=build /specular/sbin /specular/sbin
COPY --from=build /specular/config/local_docker /specular/workspace
COPY --from=build /specular/sbin /specular/sbin

# DEBUG/LOCAL BUILD
COPY ../config/local_docker /specular/workspace
COPY ../sbin /specular/sbin
# COPY ../config/local_docker /specular/workspace
# COPY ../sbin /specular/sbin
# COPY ../services /specular/services

WORKDIR /specular/workspace
Expand Down
Loading