initial commit
This commit is contained in:
commit
72242805bc
1 changed files with 18 additions and 0 deletions
18
dockerfile
Normal file
18
dockerfile
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
FROM ruby:3.2-slim
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
# Native toolchain + basics Jekyll/gems expect
|
||||
RUN set -eux; \
|
||||
apt-get update; \
|
||||
apt-get install -y --no-install-recommends \
|
||||
build-essential \
|
||||
gcc g++ make \
|
||||
libc6-dev \
|
||||
pkg-config \
|
||||
git \
|
||||
curl \
|
||||
ca-certificates \
|
||||
nodejs; \
|
||||
rm -rf /var/lib/apt/lists/*
|
||||
|
||||
RUN gem install bundler jekyll
|
||||
Loading…
Add table
Add a link
Reference in a new issue