jabuxas
5343f236ed
the problem is that a simple wgetpaste pkg took 10 minutes (https://paste.jabuxas.xyz/4689814282.log) to compile. i have no idea whats wrong yet
14 lines
417 B
Docker
14 lines
417 B
Docker
FROM chimeralinux/chimera:latest
|
|
|
|
RUN echo /cports/packages/user > /etc/apk/repositories.d/00-cports.list
|
|
|
|
RUN echo /cports/packages/contrib >> /etc/apk/repositories.d/00-cports.list
|
|
|
|
RUN echo /cports/packages/main >> /etc/apk/repositories.d/00-cports.list
|
|
|
|
RUN apk upgrade && apk add base-cbuild-host shadow procps ca-certificates bash
|
|
|
|
RUN useradd -s /bin/bash user
|
|
|
|
RUN mkdir /cports && chown -R user:user /cports
|