From 2799fa46a04f6fda63ae99cc33ffad53f9ed29ef Mon Sep 17 00:00:00 2001 From: Aleks Rutins Date: Wed, 4 Jun 2025 15:44:00 -0400 Subject: [PATCH] Initial commit --- .radicle/native.yaml | 3 +++ Containerfile | 12 ++++++++++++ 2 files changed, 15 insertions(+) create mode 100644 .radicle/native.yaml create mode 100644 Containerfile 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