Skip to content

Commit

Permalink
mkdir & chmod in one line
Browse files Browse the repository at this point in the history
Co-authored-by: Hans <11695964+hupling@users.noreply.github.com>
  • Loading branch information
ejcsid and hupling authored Aug 2, 2024
1 parent 61d06d2 commit 77a8dab
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,7 @@
ENV PATH=${KETTLE_HOME}:$PATH

# Create PENTAHO_HOME directory and make it writable
RUN mkdir ${KETTLE_HOME}
RUN chmod 775 ${KETTLE_HOME}
RUN mkdir ${KETTLE_HOME} && chmod 775 ${KETTLE_HOME}

WORKDIR ${KETTLE_HOME}

Expand Down

0 comments on commit 77a8dab

Please # to comment.