Skip to content

Commit

Permalink
Separate RUNs
Browse files Browse the repository at this point in the history
  • Loading branch information
nning committed Nov 16, 2022
1 parent d8b5bff commit 578cf94
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,10 @@ FROM alpine:3 as builder
RUN apk add gcc libc-dev make ruby-dev
COPY . /tmp
WORKDIR /tmp
RUN \
gem build transmission-rss.gemspec && \
gem install -N --build-root /build transmission-rss-*.gem
RUN gem build transmission-rss.gemspec
RUN gem install -N --build-root /build transmission-rss-*.gem

FROM alpine:3
MAINTAINER henning mueller <[email protected]>
ARG UID=1000
ARG GID=1000
RUN \
Expand Down

0 comments on commit 578cf94

Please sign in to comment.