Skip to content
Merged
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: 3 additions & 1 deletion documentation/docs/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ WORKDIR /usr/src/goose
# Copy the entire project
COPY . .

RUN apt-get update && apt-get install -y protobuf-compiler

# Build the project
RUN cargo build --release

Expand Down Expand Up @@ -116,4 +118,4 @@ RUN echo 'alias ll="ls -la"' >> ~/.bashrc && \
echo 'alias fd=fdfind' >> ~/.bashrc

# Add JBang to PATH
RUN echo 'export PATH="$HOME/.jbang/bin:$PATH"' >> ~/.bashrc
RUN echo 'export PATH="$HOME/.jbang/bin:$PATH"' >> ~/.bashrc
Loading