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 74e6d60 commit c358c21Copy full SHA for c358c21
11.0.0.0/ace/ubuntu-1604/demo/Dockerfile
@@ -3,10 +3,10 @@ FROM ace:11.0.0.0
3
ENV BAR1=Transformation_Map.bar
4
5
# Copy in the bar file to a temporary directory
6
-COPY $BAR1 /tmp
+COPY --chown=aceuser $BAR1 /tmp
7
8
# Unzip the BAR file; need to use bash to make the profile work
9
-RUN bash -c 'mqsicreateworkdir /home/aceuser/ace-server && mqsibar -w /home/aceuser/ace-server -a /tmp/$BAR1 -c'
+RUN bash -c 'mqsibar -w /home/aceuser/ace-server -a /tmp/$BAR1 -c'
10
11
# Switch off the admin REST API for the server run, as we won't be deploying anything after start
12
RUN sed -i 's/adminRestApiPort/#adminRestApiPort/g' /home/aceuser/ace-server/server.conf.yaml
0 commit comments