Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,12 @@ FROM python:3.8.12-alpine
RUN adduser -D powsybl
USER powsybl
WORKDIR /home/powsybl

COPY scripts/requirements.txt ./
RUN pip3 install --no-cache-dir -r requirements.txt

COPY scripts/ ./

RUN pip3 install -r requirements.txt
# We call a script here, but it's overwritten at job execution by the way
# depending at which script should be applied
# it's a dry-run call by default to avoid unexpected impact with this image
Expand Down