-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Andres Acosta <pipeacosta@gmail.com>
- Loading branch information
1 parent
c4d8fd3
commit abacc21
Showing
1 changed file
with
4 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
FROM fedora:36 AS base | ||
|
||
ARG CIM_VERSION=CGMES_2.4.15_16FEB2016 | ||
ARG VILLAS_VERSION=411b0ad49e2629ad41c6918d2a6c51e9a72220b4 | ||
ARG VILLAS_VERSION=18cdd2a6364d05fbf413ca699616cd324abfcb54 | ||
|
||
ARG CMAKE_OPTS | ||
ARG MAKE_OPTS=-j4 | ||
|
@@ -69,7 +69,9 @@ RUN dnf -y install \ | |
RUN dnf -y install \ | ||
mosquitto-devel \ | ||
libconfig-devel \ | ||
libnl3-devel | ||
libnl3-devel \ | ||
protobuf-devel \ | ||
protobuf-c-devel | ||
|
||
# Python dependencies | ||
ADD requirements.txt . | ||
Check notice Code scanning / SonarCloud Prefer COPY over ADD for copying local resources Low
Replace this ADD instruction with a COPY instruction. See more on SonarQube Cloud
|
||
|