Skip to content

Commit

Permalink
Perf: Copy the binary instead of building
Browse files Browse the repository at this point in the history
  • Loading branch information
Unic-X committed Nov 27, 2024
1 parent 372021b commit edfdfba
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ WORKDIR /app

COPY . .

RUN apt-get intsall openssh && \
RUN apt-get install openssh sqlite && \
mkdir -p /app/private /app/.data && \
[ ! -f /app/private/id_rsa ] && ssh-keygen -t rsa -b 4096 -f /app/private/id_rsa -N "" || true

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Goback

**Goback** is a distributed local backup system designed to facilitate secure and efficient file backups. The system includes both a client and server component to manage and perform backups across different machines.
**Goback** is a distributed local backup tool designed to facilitate secure and efficient file backups. The tool includes both a client and server component to manage and perform backups across different machines.

## Getting Started

Expand Down Expand Up @@ -72,7 +72,7 @@ export PATH=$PATH:$(pwd)

## Usage
### Client
The client command opens a prompt allowing you to interact with the backup system. It includes options for uploading files, listing directories, and exiting.
The client command opens a prompt allowing you to interact with the backup tool. It includes options for uploading files, listing directories, and exiting.

![client-usage](https://i.imgur.com/Ocu6ZqM.png)
### Server
Expand Down

0 comments on commit edfdfba

Please sign in to comment.