Skip to content
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
4 changes: 2 additions & 2 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
# Dockerfiles to.

# Git
**/.git/
**/.gitignore
# **/.git/
# **/.gitignore

**/.DS_Store
**/symbolCache.db
Expand Down
2 changes: 1 addition & 1 deletion lib/bolt/core/src/dep/cargo/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ pub async fn build<'a, T: AsRef<str>>(ctx: &ProjectContext, opts: BuildOpts<'a,

FROM rust:1.77.2-slim

RUN apt-get update && apt-get install -y protobuf-compiler pkg-config libssl-dev g++
RUN apt-get update && apt-get install -y protobuf-compiler pkg-config libssl-dev g++ git

RUN apt-get install --yes libpq-dev wget
RUN wget https://github.com/mozilla/sccache/releases/download/v0.2.15/sccache-v0.2.15-x86_64-unknown-linux-musl.tar.gz \
Expand Down