2023-12-18 14:18:56 +00:00
|
|
|
FROM ruby:3.2.2
|
2023-12-11 22:35:31 +00:00
|
|
|
|
2023-12-18 14:18:56 +00:00
|
|
|
WORKDIR /roysathome/
|
2023-12-11 22:35:31 +00:00
|
|
|
|
|
|
|
RUN apt-get update && apt-get install -y git
|
|
|
|
|
|
|
|
RUN git clone https://git.roysathome.net/joseph/roysathome.net.git .
|
|
|
|
|
2023-12-18 14:18:56 +00:00
|
|
|
WORKDIR ./auth
|
2023-12-11 22:35:31 +00:00
|
|
|
|
|
|
|
RUN bundle install
|
|
|
|
|
2023-12-18 17:22:28 +00:00
|
|
|
CMD ["ruby","/roysathome/auth/auth.rb"]
|