www.netz39.de/assets/Dockerfile

16 lines
372 B
Text
Raw Normal View History

2023-10-16 01:36:59 +02:00
FROM sylhare/jekyll:latest
LABEL maintainer="sylhare"
LABEL image="sylhare/type-on-strap"
# Create Type-on-strap Gemfile
RUN echo "source \"https://rubygems.org\"" >> Gemfile
RUN echo "gem 'type-on-strap', '>= 2.4.9', '< 3.0'" >> Gemfile
2023-10-16 01:36:59 +02:00
RUN echo "Adding the Gemfile" >> cat Gemfile
# Install the theme
RUN bundle install
# Make it accessible from outside
EXPOSE 4000