From 9206827fc24a05812609394a8810b2a02d11d60b Mon Sep 17 00:00:00 2001 From: LMBishop <13875753+LMBishop@users.noreply.github.com> Date: Sat, 30 Sep 2023 21:12:14 +0100 Subject: Remove expired links from docs --- docs/Dockerfile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 docs/Dockerfile (limited to 'docs/Dockerfile') diff --git a/docs/Dockerfile b/docs/Dockerfile new file mode 100644 index 00000000..226a4f2d --- /dev/null +++ b/docs/Dockerfile @@ -0,0 +1,17 @@ +FROM ruby:3.2.2 + +RUN bundle config --global frozen 1 && \ + mkdir -p /vendor/bundle && \ + bundle config set --local path /vendor/bundle + +WORKDIR /app + +COPY Gemfile Gemfile.lock ./ + +RUN bundle install + +COPY . . + +EXPOSE 4000 + +CMD bundle exec jekyll serve --host 0.0.0.0 --port 4000 --destination /tmp/_site \ No newline at end of file -- cgit v1.2.3-70-g09d2