Ensure noopener and norel via a plugin. Am I going to actually write a test and check for this? Lol.
13 lines
274 B
Docker
13 lines
274 B
Docker
FROM docker.io/jekyll/builder:4 AS builder
|
|
|
|
COPY --chown=1000 ./Gemfile* /src/
|
|
WORKDIR /src/
|
|
RUN bundle install
|
|
|
|
COPY --chown=1000 . /src
|
|
WORKDIR /src/ianonavy/
|
|
RUN jekyll build
|
|
|
|
FROM nginx:1.21.3
|
|
COPY --chown=nginx --from=builder /src/ianonavy/_site /usr/share/nginx/html/
|