mirror of
https://github.com/encounter/linuxdeploy-plugin-appimage.git
synced 2026-07-10 12:18:44 -07:00
13 lines
509 B
Docker
13 lines
509 B
Docker
FROM centos:6
|
|
|
|
SHELL ["/bin/bash", "-x", "-c"]
|
|
|
|
RUN yum install -y centos-release-scl-rh && \
|
|
yum install -y devtoolset-7 wget curl patchelf vim-common fuse libfuse2 libtool autoconf automake zlib-devel libjpeg-devel libpng-devel nano git && \
|
|
wget https://artifacts.assassinate-you.net/artifactory/cmake-centos6/cmake-v3.15.3-x86_64.tar.gz -O- | tar xz --strip-components=1 -C/usr/local
|
|
|
|
ENV ARCH=x86_64
|
|
COPY entrypoint.sh /
|
|
SHELL ["/entrypoint.sh", "bash", "-x", "-c"]
|
|
ENTRYPOINT ["/entrypoint.sh"]
|