We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 967fbd3 commit 2ede9c7Copy full SHA for 2ede9c7
.gitignore
@@ -20,6 +20,9 @@ data/invoicing/pay/processed/*
20
21
ssh_tests
22
23
+# Build/test artifacts
24
+artifacts/*
25
+
26
vendor
27
.bundle
28
Dockerfile
@@ -6,7 +6,9 @@ RUN groupadd -g 40054 alma && \
6
useradd -r -s /sbin/nologin -M -u 40054 -g alma alma && \
7
groupadd -g 40061 bfs && \
8
usermod -u 40061 -g bfs -G alma -l bfs default && \
9
- find / -user 1001 -exec chown -h bfs {} \; || true
+ find / -user 1001 -exec chown -h bfs {} \; || true && \
10
+ mkdir -p /opt/app && \
11
+ chown -R bfs:bfs /opt/app
12
13
COPY --chown=bfs Gemfile* .ruby-version ./
14
RUN bundle config set force_ruby_platform true
0 commit comments