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
3 changes: 3 additions & 0 deletions .github/workflows/build-tor-toolchain-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4

- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.23.0 AS builder
FROM alpine:3.24.1 AS builder

WORKDIR /build

Expand Down Expand Up @@ -46,7 +46,7 @@ RUN cp ./src/app/tor \
./src/config/torrc.sample \
/build/binaries

FROM alpine:3.23.0 AS tor-toolchain
FROM alpine:3.24.1 AS tor-toolchain

RUN mkdir -p /usr/local/bin

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ the binaries.
It accepts a build parameter called `TOR_VERSION` which corresponds to a Tor
version, a tag from the official repository :
`https://gitlab.torproject.org/tpo/core/tor`
`TOR_VERSION` defaults to `0.4.8.21` if unspecified, as for today, it's the
`TOR_VERSION` defaults to `0.4.9.9` if unspecified, as for today, it's the
latest version released.

For easy build, there is a `docker-compose.yml` file which builds everything for
Expand Down
Loading