2 Star 2 Fork 0

wdliming/safeclib

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile-fedora-aarch64 1.15 KB
一键复制 编辑 原始数据 按行查看 历史
Reini Urban 提交于 2020-08-31 11:07 . v31082020 3.6.0 release
# Docker >= 17.05.0-ce allows using build-time args (ARG) in FROM (#31352).
# https://github.com/moby/moby/releases/tag/v17.05.0-ce
ARG BASE_IMAGE=fedora
#FROM ${BASE_IMAGE}
FROM multiarch/fedora:30-aarch64
# Test with non-root user.
ENV TEST_USER tester
ENV WORK_DIR "/work"
#RUN uname -a
#RUN echo -e "deltarpm=0\ninstall_weak_deps=0\ntsflags=nodocs" >> /etc/dnf/dnf.conf
# Disable modular repositories to save a running time of "dnf update"
# if they exists.
#RUN ls /etc/yum.repos.d/*.repo
RUN sed -i '/^enabled=1$/ s/1/0/' /etc/yum.repos.d/*-modular.repo || true
# RUN dnf -y update
RUN dnf -y --allowerasing --repo fedora install \
file gcc git make redhat-rpm-config sudo \
automake autoconf libtool perl-Text-Diff pkgconf-pkg-config strace gdb
#RUN dnf -y --repo fedora install m4 libtool perl-Text-Diff pkgconf-pkg-config strace gdb
#RUN dnf -y --repo fedora install strace gdb
# Create test user and the environment
RUN useradd "${TEST_USER}"
WORKDIR "${WORK_DIR}"
COPY . .
RUN chown -R "${TEST_USER}:${TEST_USER}" "${WORK_DIR}"
# Enable sudo without password for convenience.
RUN echo "${TEST_USER} ALL = NOPASSWD: ALL" >> /etc/sudoers
USER "${TEST_USER}"
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/liming2019/safeclib.git
git@gitee.com:liming2019/safeclib.git
liming2019
safeclib
safeclib
master

搜索帮助