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
|
|
|
|
2023-12-18 14:18:56 +00:00
|
|
|
# Stage 2: Final image with Ruby
|
2023-12-11 22:35:31 +00:00
|
|
|
RUN bundle install
|
|
|
|
|
2023-12-17 20:56:41 +00:00
|
|
|
CMD ["ruby","./auth.rb"]
|