Skip to content

Commit

Permalink
build(docker): update casings and key value format
Browse files Browse the repository at this point in the history
  • Loading branch information
Elegant996 committed Aug 25, 2024
1 parent 71201ab commit b1b08f2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
FROM curlimages/curl:8.9.1 as curl
FROM curlimages/curl:8.9.1 AS curl

RUN curl -L -o /tmp/bazel https://github.com/bazelbuild/bazelisk/releases/latest/download/bazelisk-linux-amd64

FROM ubuntu:24.04 as build
FROM ubuntu:24.04 AS build

COPY --from=curl --chmod=755 /tmp/bazel /usr/local/bin/bazel

ENV RTORRENT_VERSION 0.9.8
ENV RTORRENT_REVISION r17
ENV RTORRENT_VERSION=0.9.8
ENV RTORRENT_REVISION=r17

WORKDIR /root/rtorrent

Expand Down Expand Up @@ -36,7 +36,7 @@ RUN cp -L bazel-bin/rtorrent dist/
RUN cp -L bazel-bin/rtorrent-deb.deb dist/

# Now get the clean image
FROM alpine:3.20 as build-sysroot
FROM alpine:3.20 AS build-sysroot

WORKDIR /root

Expand All @@ -55,7 +55,7 @@ RUN tar xvf data.tar.* -C /root/sysroot/

RUN mkdir -p /root/sysroot/download /root/sysroot/session /root/sysroot/watch

FROM alpine:3.20 as rtorrent
FROM alpine:3.20 AS rtorrent

RUN apk --no-cache add \
binutils \
Expand Down

0 comments on commit b1b08f2

Please sign in to comment.