Skip to content

Commit

Permalink
fix permissions
Browse files Browse the repository at this point in the history
  • Loading branch information
prudhomm committed Feb 1, 2024
1 parent 9c05446 commit c7a6c72
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion dockerfiles/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
ARG TAG=ktirio
FROM ghcr.io/feelpp/bim2modelica/bim2modelica-env:$TAG

RUN apt update && apt install -y apt install python3.10-venv && apt clean && rm -rf /var/lib/apt/lists/*
USER root

RUN apt update -y -q && apt install -y apt install python3.10-venv && apt clean && rm -rf /var/lib/apt/lists/*

USER bim2modelica

RUN pip3 install mako pandas numpy

COPY . /opt/bim2modelica
Expand Down

0 comments on commit c7a6c72

Please sign in to comment.