-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
2 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 \ | ||
|