Added docker compose to simulate GitHub pages

This commit is contained in:
Rolf Geuenich
2023-11-03 15:23:19 +01:00
parent 66e07503a2
commit 7eed8ce402
4 changed files with 42 additions and 0 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM ruby:2.7
ENV LC_ALL C.UTF-8
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US.UTF-8
WORKDIR /usr/src/app
COPY Gemfile ./
RUN gem install bundler && bundle install
EXPOSE 4000