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 3 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
2 changes: 1 addition & 1 deletion docker/build-master.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ RUN echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesourc

RUN apt-get update && apt-get install nodejs -y

RUN apt install -y libudev-dev build-essential ca-certificates clang libpq-dev libssl-dev pkg-config lsof lld bash python3 make g++ musl-dev git
RUN apt install -y libudev-dev build-essential ca-certificates clang libpq-dev libssl-dev pkg-config lsof lld bash python3 make g++ musl-dev git pgrep
rhoop marked this conversation as resolved.
Show resolved Hide resolved

RUN apt install -y linux-headers-generic wget
RUN npm install -g pnpm
Expand Down
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