File tree Expand file tree Collapse file tree 2 files changed +3
-10
lines changed
Expand file tree Collapse file tree 2 files changed +3
-10
lines changed Original file line number Diff line number Diff line change @@ -12,18 +12,11 @@ RUN groupadd -g 40054 alma && \
1212 chown -R bfs:bfs /opt/app
1313
1414# Get list of available packages
15- RUN apt-get update -qq
16-
17- # Install system packages needed to build gems with C extensions.
18- RUN apt-get install -y --no-install-recommends \
19- g++ \
20- git \
15+ RUN apt-get -y update && \
16+ apt-get -y --no-install-recommends install \
2117 build-essential \
22- libxml2-dev \
23- libxslt1-dev \
2418 make
2519
26-
2720WORKDIR /opt/app
2821COPY --chown=bfs Gemfile* .ruby-version ./
2922RUN bundle config set force_ruby_platform true
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ Watch a non-standard directory:
3333
3434``` sh
3535docker compose run --rm app watch /path/in/container # absolute path
36- docker compose run --rm app watch data/somedir # path relative to /opt/app-root/src
36+ docker compose run --rm app watch data/somedir # path relative to /opt/app
3737```
3838
3939Process a specific file:
You can’t perform that action at this time.
0 commit comments