Skip to content

Commit

Permalink
Docker builder on github has a linter - fix warnings. (#3463)
Browse files Browse the repository at this point in the history
  • Loading branch information
jhale authored Oct 11, 2024
1 parent 036f9bc commit aadf5fb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docker/Dockerfile.test-env
Original file line number Diff line number Diff line change
Expand Up @@ -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 <fenics-steering-council@googlegroups.com>"
LABEL description="FEniCS testing and development environment with PETSc real, complex, 32-bit and 64-bit modes"

Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit aadf5fb

Please sign in to comment.