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
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,13 @@ To compile AlphaRTC, please refer to the following steps

1. Prerequisites

Make sure Docker is installed on your system.
Make sure Docker is installed on your system and add user to docker group.

``` shell
# Install Docker
curl -fsSL get.docker.com -o get-docker.sh
sudo sh get-docker.sh
sudo usermod -aG docker ${USER}
```

2. Clone the code
Expand All @@ -71,7 +72,7 @@ To compile AlphaRTC, please refer to the following steps

``` shell
cd AlphaRTC
sudo make all
make all
```

You should then be able to see two Docker images, `alphartc` and `alphartc-compile` using `sudo docker images`
Expand Down
2 changes: 1 addition & 1 deletion dockers/Dockerfile.compile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ARG UID
ARG GUID

RUN groupadd -f -r -g ${GUID} g${USER}
RUN useradd ${USER} -l -u ${UID} -g ${GUID} -m -s /bin/bash
RUN useradd ${USER} -l -u ${UID} -g ${GUID} -m -s /bin/bash || true

# Download depot_tools
ARG DEPOT_TOOLS=/opt/depot_tools
Expand Down