Initial commit

This commit is contained in:
Aleks Rutins 2025-06-04 15:44:00 -04:00
commit 2799fa46a0
2 changed files with 15 additions and 0 deletions

3
.radicle/native.yaml Normal file
View file

@ -0,0 +1,3 @@
shell: |
podman build . -t quay.io/aspr/phlexite:latest
podman push quay.io/aspr/phlexite:latest

12
Containerfile Normal file
View file

@ -0,0 +1,12 @@
FROM docker.io/ruby:alpine
RUN apk add bash git alpine-sdk ruby-dev
RUN mkdir -p /site
WORKDIR /site
RUN gem install phlexite bundler
CMD ["/bin/bash", "-c", "cd /site && bundle install && bundle exec ruby /site/build.rb"]