mirror of
https://github.com/simon987/general_ci.git
synced 2025-04-10 14:06:42 +00:00
Add alpine
This commit is contained in:
parent
e24219a584
commit
b18352de35
10
Dockerfile
10
Dockerfile
@ -1,10 +0,0 @@
|
||||
FROM ubuntu:16.04
|
||||
|
||||
MAINTAINER simon987 <me@simon987.net>
|
||||
|
||||
RUN apt update
|
||||
RUN apt install -y git cmake pkg-config libglib2.0-dev\
|
||||
libssl-dev uuid-dev libavformat-dev libswscale-dev \
|
||||
python3 libmagic-dev libfreetype6-dev libcurl4-openssl-dev \
|
||||
libbz2-dev yasm libharfbuzz-dev ragel libarchive-dev\
|
||||
automake autotools-dev
|
5
alpine_ci/Dockerfile
Normal file
5
alpine_ci/Dockerfile
Normal file
@ -0,0 +1,5 @@
|
||||
FROM alpine
|
||||
|
||||
RUN apk update && apk add --no-cache binutils cmake make libgcc \
|
||||
musl-dev gcc libarchive-dev acl-dev
|
||||
|
17
ubuntu_ci/Dockerfile
Normal file
17
ubuntu_ci/Dockerfile
Normal file
@ -0,0 +1,17 @@
|
||||
FROM ubuntu:16.04
|
||||
|
||||
MAINTAINER simon987 <me@simon987.net>
|
||||
|
||||
RUN apt update
|
||||
RUN apt install -y git pkg-config libglib2.0-dev\
|
||||
libssl-dev uuid-dev python3 libmagic-dev \
|
||||
libfreetype6-dev libcurl4-openssl-dev \
|
||||
libbz2-dev yasm libharfbuzz-dev ragel libarchive-dev \
|
||||
automake autotools-dev libopenjp2-7-dev wget libtool \
|
||||
libxml2-dev python3 python3-dev
|
||||
|
||||
RUN wget https://github.com/gohugoio/hugo/releases/download/v0.62.1/hugo_0.62.1_Linux-64bit.deb &&\
|
||||
dpkg -i hugo*.deb && rm hugo*.deb
|
||||
|
||||
RUN wget https://github.com/Kitware/CMake/releases/download/v3.16.2/cmake-3.16.2.tar.gz && \
|
||||
tar -xzf cmake-*.tar.gz && cd cmake-* && ./bootstrap && make -j 4 && make install
|
Loading…
x
Reference in New Issue
Block a user