Initial project structure with some barebones layout, CSS and JS from game-data
This commit is contained in:
18
Dockerfile.dev
Normal file
18
Dockerfile.dev
Normal file
@@ -0,0 +1,18 @@
|
||||
FROM ruby:3.4
|
||||
|
||||
RUN gem install bundler
|
||||
|
||||
WORKDIR /usr/src/muldap
|
||||
|
||||
COPY Gemfile Gemfile.l*ck ./
|
||||
|
||||
RUN bundle check || bundle install
|
||||
|
||||
RUN gem install rake
|
||||
|
||||
COPY . ./
|
||||
|
||||
ENV RACK_ENV=development
|
||||
|
||||
ENTRYPOINT ["bundle", "exec", "puma"]
|
||||
|
Reference in New Issue
Block a user