mirror of
https://github.com/GTFOBins/GTFOBins.github.io.git
synced 2026-01-19 14:01:33 +01:00
11 lines
213 B
Docker
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"]
|