File tree Expand file tree Collapse file tree 2 files changed +37
-0
lines changed
Expand file tree Collapse file tree 2 files changed +37
-0
lines changed Original file line number Diff line number Diff line change 2727 docker/centos-7/Dockerfile,
2828 docker/centos-8/Dockerfile,
2929 docker/centos-stream8/Dockerfile,
30+ docker/centos-stream9/Dockerfile,
3031 docker/fedora-31/Dockerfile,
3132 docker/fedora-32/Dockerfile,
3233 docker/fedora-33/Dockerfile,
Original file line number Diff line number Diff line change 1+ FROM tgagor/centos:stream9
2+ LABEL maintainer="Illya Kysil <ikysil@ikysil.name>"
3+
4+ ENV LANG=C.UTF-8 \
5+ LANGUAGE=en_US:en \
6+ LC_ALL=C.UTF-8
7+
8+ RUN dnf -y install \
9+ git \
10+ wget \
11+ gcc-c++ \
12+ glibc-devel.i686 libgcc.i686 libstdc++.i686 readline.i686 \
13+ glibc-devel libgcc libstdc++ readline \
14+ python3 python3-pip \
15+ && \
16+ dnf clean all
17+
18+ ADD docker /opt/docker
19+
20+ RUN /opt/docker/install-scons.sh
21+
22+ RUN /opt/docker/install-fasm.sh
23+
24+ ARG RUNUSER=ikforth
25+
26+ ARG RUNUID=1001
27+
28+ RUN useradd ${RUNUSER} --uid ${RUNUID} --user-group
29+
30+ USER ${RUNUSER}
31+
32+ VOLUME ["/opt/ikforth" ]
33+
34+ WORKDIR /opt/ikforth
35+
36+ ENTRYPOINT ["/bin/bash" ]
You can’t perform that action at this time.
0 commit comments