Test build-docker CI stage
This commit is contained in:
parent
cd3cedd21d
commit
bb837b9d24
|
|
@ -14,4 +14,13 @@ jobs:
|
||||||
- uses: actions/upload-artifact@v3
|
- uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: generated-site
|
name: generated-site
|
||||||
path: _site/
|
path: _site/
|
||||||
|
build_and_push_container:
|
||||||
|
runs-on: docker
|
||||||
|
container:
|
||||||
|
image: git.hswro.org/fleg/hswro_org:latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/download-artifact@v3
|
||||||
|
with:
|
||||||
|
- run: find
|
||||||
|
- run: podman version
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@ FROM ubuntu:22.04
|
||||||
RUN apt-get update && apt-get install -y --no-install-recommends \
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||||
ruby-full build-essential zlib1g-dev \
|
ruby-full build-essential zlib1g-dev \
|
||||||
build-essential \
|
build-essential \
|
||||||
git nodejs git podman \
|
git nodejs git docker.io \
|
||||||
&& rm -rf /var/lib/apt/lists/* \
|
&& rm -rf /var/lib/apt/lists/* \
|
||||||
&& gem install --no-document jekyll -v 4.4.1 \
|
&& gem install --no-document jekyll -v 4.4.1 \
|
||||||
&& gem install --no-document jekyll-environment-variables \
|
&& gem install --no-document jekyll-environment-variables \
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue