Skip to content

Commit 18e60ab

Browse files
committed
Fix user group for Ruby
This fixes ruby template to set app group properly. Fixes [openfaas#41](openfaas#41). Before used to add GEO data for user, after the change adds group to user Signed-off-by: Ivana Yovcheva (VMware) <[email protected]>
1 parent f7ad0d2 commit 18e60ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

template/ruby/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ WORKDIR /home/app/function
2323
RUN bundle install
2424

2525
RUN addgroup -S app \
26-
&& adduser -S -g app app
26+
&& adduser app -S -G app
2727

2828
RUN chown app:app -R /home/app
2929

0 commit comments

Comments
 (0)