mirror of
https://github.com/netz39/www.netz39.de.git
synced 2025-01-18 20:10:12 +01:00
15 lines
372 B
Docker
15 lines
372 B
Docker
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.2.4', '< 3.0'" >> Gemfile
|
|
RUN echo "Adding the Gemfile" >> cat Gemfile
|
|
|
|
# Install the theme
|
|
RUN bundle install
|
|
|
|
# Make it accessible from outside
|
|
EXPOSE 4000
|
|
|