-
-
Notifications
You must be signed in to change notification settings - Fork 182
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Docker builder on github has a linter - fix warnings. (#3463)
- Loading branch information
Showing
1 changed file
with
3 additions
and
3 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 |
---|---|---|
|
@@ -31,7 +31,7 @@ ARG OPENMPI_PATCH=3 | |
|
||
######################################## | ||
|
||
FROM ubuntu:24.04 as dev-env | ||
FROM ubuntu:24.04 AS dev-env | ||
LABEL maintainer="FEniCS Steering Council <[email protected]>" | ||
LABEL description="FEniCS testing and development environment with PETSc real, complex, 32-bit and 64-bit modes" | ||
|
||
|
@@ -143,8 +143,8 @@ RUN if [ "$MPI" = "mpich" ]; then \ | |
ldconfig && \ | ||
rm -rf /tmp/* | ||
|
||
ENV VIRTUAL_ENV /dolfinx-env | ||
ENV PATH /dolfinx-env/bin:$PATH | ||
ENV VIRTUAL_ENV=/dolfinx-env | ||
ENV PATH=/dolfinx-env/bin:$PATH | ||
RUN python3 -m venv ${VIRTUAL_ENV} | ||
|
||
# Install Python packages (via pip) | ||
|