blog/Dockerfile
pauljako f59a6a9c70
All checks were successful
Build the Docker Image / docker (push) Successful in 3m22s
Dockerfile aktualisiert
feat(Dockerfile): installing dependencies
2025-06-01 13:41:19 +02:00

11 lines
No EOL
139 B
Docker

FROM bretfisher/jekyll-serve
COPY . /site
WORKDIR /site
RUN bundle install --retry 5 --jobs 20
ENV JEKYLL_ENV="production"
EXPOSE 4000