-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #110 from TechAachen/attempt-fix-calendar_neu202405
[tech] Calendar entries across monthly borders
- Loading branch information
Showing
3 changed files
with
38 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
FROM ubuntu:22.04 | ||
LABEL maintainer="Raphael Lehmann <raphael+docker@rleh.de>" | ||
LABEL description="Jekyll Pfusch image" | ||
|
||
WORKDIR /work | ||
|
||
ADD Gemfile /work | ||
|
||
ENV LANG="en_US.UTF-8" | ||
ENV TZ=Europe/Berlin | ||
ARG DEBIAN_FRONTEND=noninteractive | ||
|
||
RUN apt-get update -qq && \ | ||
apt-get upgrade -y -qq && \ | ||
apt-get install -y -qq \ | ||
ruby-full \ | ||
rubygems \ | ||
libffi-dev \ | ||
build-essential && \ | ||
apt-get clean -qq | ||
RUN gem install jekyll bundler | ||
RUN bundle install |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters