Skip to content

Commit

Permalink
Fix docker file rights and add missing truststore dir
Browse files Browse the repository at this point in the history
  • Loading branch information
juliangruendner committed Oct 18, 2024
1 parent dacfca3 commit fef89ae
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,16 @@ COPY structureDefinitions /app/structureDefinitions
COPY mappings /app/mappings
COPY ontology /app/ontology

RUN mkdir -p $CERTIFICATE_PATH $TRUSTSTORE_PATH
RUN mkdir /app/output
RUN chown -R 1000:1000 /app

RUN chown -R 1001:1001 /app

COPY docker-entrypoint.sh /
RUN chmod +x /docker-entrypoint.sh



WORKDIR /app
USER 1001

Expand Down

0 comments on commit fef89ae

Please sign in to comment.