añadir Containerfile
This commit is contained in:
parent
847707b5da
commit
df1b9f7a77
1 changed files with 13 additions and 0 deletions
13
Containerfile
Normal file
13
Containerfile
Normal file
|
@ -0,0 +1,13 @@
|
|||
FROM docker.io/alpine:3.13
|
||||
|
||||
RUN apk add --no-cache openssh-client make git bash coreutils diffutils
|
||||
|
||||
RUN echo "https://alpine.sutty.nl/alpine/v3.13/sutty" >> "/etc/apk/repositories" && \
|
||||
wget https://alpine.sutty.nl/alpine/sutty.pub -O "/etc/apk/keys/alpine@sutty.nl-5ea884cd.rsa.pub"
|
||||
|
||||
COPY packages /root/packages
|
||||
|
||||
RUN apk add --no-cache $(cat "/root/packages" | tr "\n" " ")
|
||||
RUN sed -re "s/#(@platforms = )/\1/" -i "/usr/lib/ruby/2.7.0/rubygems.rb"
|
||||
|
||||
COPY .gemrc /root/.gemrc
|
Loading…
Reference in a new issue