Skip to content

Commit

Permalink
feat/tor: Tor version 0.4.8.9 (#8)
Browse files Browse the repository at this point in the history
Signed-off-by: BugFest <[email protected]>
  • Loading branch information
bugfest authored Nov 12, 2023
1 parent ce34086 commit 47c2fee
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ARG ALPINE_VERSION="3.18.4"
# Tor builder
FROM --platform=$TARGETPLATFORM docker.io/library/alpine:${ALPINE_VERSION} as tor-builder

ARG TOR_VERSION="0.4.8.8"
ARG TOR_VERSION="0.4.8.9"
RUN apk add --update --no-cache \
git build-base automake autoconf make \
build-base openssl-dev libevent-dev zlib-dev \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.quick
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ LABEL \
WORKDIR /app
ENV HOME=/app

ARG TOR_VERSION="0.4.8.8"
ARG TOR_VERSION="0.4.8.9"
RUN apk add --update --no-cache \
tor=~"${TOR_VERSION}" && \
chmod -R g+w /app /run
Expand Down
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ all: build
quick:
docker buildx build \
--platform=linux/amd64,linux/arm,linux/arm64 \
--build-arg TOR_VERSION=0.4.8.8 \
--tag quay.io/bugfest/tor:0.4.8.8 \
--build-arg TOR_VERSION=0.4.8.9 \
--tag quay.io/bugfest/tor:0.4.8.9 \
--tag quay.io/bugfest/tor:latest \
--squash \
-f Dockerfile.quick \
Expand All @@ -18,8 +18,8 @@ quick:
build:
docker buildx build \
--platform=linux/amd64,linux/arm,linux/arm64 \
--build-arg TOR_VERSION=0.4.8.8 \
--tag quay.io/bugfest/tor:0.4.8.8 \
--build-arg TOR_VERSION=0.4.8.9 \
--tag quay.io/bugfest/tor:0.4.8.9 \
--tag quay.io/bugfest/tor:latest \
--squash \
-f Dockerfile \
Expand Down

0 comments on commit 47c2fee

Please sign in to comment.