Skip to content

Commit 4f7480c

Browse files
committed
Add a Dockerfile that works for Raphael locally
1 parent 2774fc4 commit 4f7480c

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

Dockerfile.pfusch

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
FROM ubuntu:22.04
2+
LABEL maintainer="Raphael Lehmann <[email protected]>"
3+
LABEL description="Jekyll Pfusch image"
4+
5+
WORKDIR /work
6+
7+
ADD Gemfile /work
8+
9+
ENV LANG="en_US.UTF-8"
10+
ENV TZ=Europe/Berlin
11+
ARG DEBIAN_FRONTEND=noninteractive
12+
13+
RUN apt-get update -qq && \
14+
apt-get upgrade -y -qq && \
15+
apt-get install -y -qq \
16+
ruby-full \
17+
rubygems \
18+
libffi-dev \
19+
build-essential && \
20+
apt-get clean -qq
21+
RUN gem install jekyll bundler
22+
RUN bundle install

0 commit comments

Comments
 (0)