roysathome.net/auth/docker/Dockerfile

17 lines
275 B
Docker
Raw Normal View History

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-18 16:13:33 +00:00
EXPOSE 4567
CMD ["ruby","./auth.rb", "-p","4567"]