Skip to content

Commit

Permalink
Add Containerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
inknos committed Feb 21, 2024
1 parent 6cb8f82 commit 318211f
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Containerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
FROM ruby:3.2.3-bookworm

COPY . /app
WORKDIR /app

RUN bash -c '/app/assets/sh/convert.sh'

RUN bundle install

EXPOSE 4000

CMD ["bundle", "exec", "jekyll", "serve", "--host", "0.0.0.0"]
7 changes: 7 additions & 0 deletions assets/sh/convert.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/bin/bash
# get all JPG, jpg, png
for file in /app/images/fulls/* ; do
f=$(basename $file)
[ -f /app/images/thumbs/$f ] || convert /app/images/fulls/$f -resize 512x /app/images/thumbs/$f
done

0 comments on commit 318211f

Please sign in to comment.