commit 2799fa46a04f6fda63ae99cc33ffad53f9ed29ef Author: Aleks Rutins Date: Wed Jun 4 15:44:00 2025 -0400 Initial commit diff --git a/.radicle/native.yaml b/.radicle/native.yaml new file mode 100644 index 0000000..9effea8 --- /dev/null +++ b/.radicle/native.yaml @@ -0,0 +1,3 @@ +shell: | + podman build . -t quay.io/aspr/phlexite:latest + podman push quay.io/aspr/phlexite:latest \ No newline at end of file diff --git a/Containerfile b/Containerfile new file mode 100644 index 0000000..8cc3902 --- /dev/null +++ b/Containerfile @@ -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"] \ No newline at end of file