mirror of
https://github.com/CodeforLeipzig/stadtratmonitor.git
synced 2025-04-04 09:46:43 +02:00
(wip) rewrite dockerfile
This commit is contained in:
parent
0e72ac66c8
commit
bc541dc0fa
3 changed files with 19 additions and 32 deletions
43
Dockerfile
43
Dockerfile
|
@ -20,19 +20,8 @@ RUN mkdir -p /home/srm/tmp
|
||||||
|
|
||||||
ARG USER_ID=1000
|
ARG USER_ID=1000
|
||||||
RUN groupadd srm && useradd --uid $USER_ID -g srm srm
|
RUN groupadd srm && useradd --uid $USER_ID -g srm srm
|
||||||
RUN chown -R srm:srm /home/srm
|
|
||||||
USER srm
|
|
||||||
|
|
||||||
WORKDIR /home/srm
|
|
||||||
|
|
||||||
RUN git clone https://github.com/sstephenson/rbenv.git .rbenv
|
|
||||||
RUN git clone https://github.com/sstephenson/ruby-build.git ~/.rbenv/plugins/ruby-build
|
|
||||||
|
|
||||||
RUN echo 'export PATH="/home/srm/.rbenv/bin:$PATH"' >> .bashrc && echo 'eval "$(~/.rbenv/bin/rbenv init -)"' >> .bashrc && . ~/.bashrc
|
|
||||||
RUN /home/srm/.rbenv/bin/rbenv install 3.2.2
|
|
||||||
RUN /home/srm/.rbenv/bin/rbenv rehash
|
|
||||||
RUN /home/srm/.rbenv/bin/rbenv global 3.2.2
|
|
||||||
|
|
||||||
|
WORKDIR /home/srm/
|
||||||
|
|
||||||
RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.3/install.sh | bash
|
RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.3/install.sh | bash
|
||||||
|
|
||||||
|
@ -49,25 +38,25 @@ ENV PATH $NVM_DIR/versions/node/v$NODE_VERSION/bin:$PATH
|
||||||
|
|
||||||
RUN gem install bundler
|
RUN gem install bundler
|
||||||
|
|
||||||
RUN mkdir -p /home/srm/app
|
WORKDIR /
|
||||||
ADD . /home/srm/app
|
RUN mkdir -p /home/srm/build/
|
||||||
USER root
|
WORKDIR /home/srm/build/
|
||||||
RUN chown -R srm:srm /home/srm/app
|
|
||||||
|
|
||||||
USER srm
|
COPY bin/ bin/
|
||||||
WORKDIR /home/srm/app
|
COPY Gemfile Gemfile
|
||||||
|
COPY config/ config/
|
||||||
|
COPY config.ru config.ru
|
||||||
|
COPY package.json package.json
|
||||||
|
|
||||||
RUN bundle config build.nokogiri --use-system-libraries
|
RUN npm install -g yarn sass
|
||||||
RUN bundle update
|
RUN bundle update
|
||||||
RUN bundle install
|
RUN bundle install
|
||||||
|
|
||||||
COPY package.json package.json
|
WORKDIR /
|
||||||
USER root
|
RUN mkdir -p /home/srm/app/
|
||||||
RUN chown -R srm:srm package.json
|
VOLUME /home/srm/app/
|
||||||
|
RUN chown -R srm:srm /home/srm/
|
||||||
|
|
||||||
USER srm
|
USER srm
|
||||||
|
|
||||||
RUN npm install -g yarn sass
|
|
||||||
|
|
||||||
EXPOSE 3000
|
EXPOSE 3000
|
||||||
ENTRYPOINT ["/docker-entrypoint.sh"]
|
CMD bundle exec puma -C /home/srm/build/config/puma.rb
|
||||||
CMD ["bundle", "exec", "puma" "-C", "config/puma.rb"]
|
|
|
@ -7,7 +7,7 @@ services:
|
||||||
args:
|
args:
|
||||||
- USER_ID=${USER_ID:-1000}
|
- USER_ID=${USER_ID:-1000}
|
||||||
volumes:
|
volumes:
|
||||||
- .:/app
|
- .:/home/srm/app/
|
||||||
ports:
|
ports:
|
||||||
- "3000:3000"
|
- "3000:3000"
|
||||||
links:
|
links:
|
||||||
|
@ -16,7 +16,7 @@ services:
|
||||||
- ELASTICSEARCH_URL=${ELASTICSEARCH_URL:-http://elasticsearch:9200}
|
- ELASTICSEARCH_URL=${ELASTICSEARCH_URL:-http://elasticsearch:9200}
|
||||||
- APPLICATION_HOST=${APPLICATION_HOST:-localhost}
|
- APPLICATION_HOST=${APPLICATION_HOST:-localhost}
|
||||||
- SHARED_IMPORT_SECRET=$SHARED_IMPORT_SECRET
|
- SHARED_IMPORT_SECRET=$SHARED_IMPORT_SECRET
|
||||||
command: sh -c "cd /home/srm/app && bundle install && bundle exec puma -C config/puma.rb"
|
command: ls -lah /home/srm/
|
||||||
elasticsearch:
|
elasticsearch:
|
||||||
user: elasticsearch
|
user: elasticsearch
|
||||||
build: ./docker/elasticsearch
|
build: ./docker/elasticsearch
|
||||||
|
|
|
@ -3,6 +3,4 @@ set -e
|
||||||
|
|
||||||
if [ -f ./tmp/pids/server.pid ]; then
|
if [ -f ./tmp/pids/server.pid ]; then
|
||||||
rm ./tmp/pids/server.pid
|
rm ./tmp/pids/server.pid
|
||||||
fi
|
fi
|
||||||
|
|
||||||
exec bundle exec "$@"
|
|
Loading…
Add table
Reference in a new issue