1
0
mirror of https://github.com/GTFOBins/GTFOBins.github.io.git synced 2026-01-19 14:01:33 +01:00
GTFOBins.github.io/Dockerfile
Andrea Cardaci 16a394df2d Ditch Jekyll incremental build
It is faster but it fails to recognize new entries.
2026-01-06 10:54:38 +01:00

11 lines
213 B
Docker

# see: curl -s https://pages.github.com/versions.json | jq -r '.ruby'
FROM ruby:3.3.4
WORKDIR /GTFOBins/
COPY ./Gemfile ./
RUN bundle install
ENTRYPOINT ["bundle", "exec", "jekyll", "serve", "--host=0.0.0.0"]