6 lines
226 B
Docker
6 lines
226 B
Docker
FROM registry.altlinux.org/sisyphus/alt:latest
|
|
RUN apt-get update && apt-get install -y ca-certificates rpm-build
|
|
RUN useradd -m -s /bin/bash alr-user
|
|
USER alr-user
|
|
WORKDIR /home/alr-user
|
|
ENTRYPOINT ["tail", "-f", "/dev/null"] |