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
29 changes: 29 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Build outputs
target/
**/target/

# OS files
.DS_Store
**/.DS_Store
Thumbs.db

# Git
.git/
.gitignore

# Documentation
docs/
**/*.md
!README.md

# CI/CD files
.github/

# Logs and temporary files
*.log
tmp/
.cache/

# Docker files
Dockerfile*
.dockerignore
3 changes: 0 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,6 @@ jobs:
asset_name: protos-${{ env.VERSION }}.zip
asset_content_type: application/octet-stream

- name: Install Protoc
uses: arduino/setup-protoc@v3

- name: Log in to GitHub Container Registry
uses: docker/login-action@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "object-store"
version = "1.0.0-alpha.1"
version = "1.0.0-alpha.2"
authors = ["Stephen Cirner <scirner@figure.com>"]
edition = "2024"

Expand Down
5 changes: 5 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
FROM rust:1.92-bookworm AS builder

# Install protobuf compiler
RUN apt-get update && \
apt-get install -y protobuf-compiler && \
rm -rf /var/lib/apt/lists/*

RUN rustup component add rustfmt

WORKDIR /usr/src/object-store
Expand Down