Skip to content
Merged
Show file tree
Hide file tree
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
12 changes: 0 additions & 12 deletions .github/workflows/docker_linuxes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,18 +28,6 @@ jobs:
- name: Run unit tests (ctest) within the Docker image
run: docker run ctl:latest sh -c "cd ./build && ctest"

Dockerfile_openexr3-repo-root:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Build the Docker image
run: docker build --no-cache --rm -f ./Dockerfile_openexr3 -t ctl:latest .

- name: Run unit tests (ctest) within the Docker image
run: docker run ctl:latest sh -c "cd ./build && ctest"

ubuntu-18-04:

runs-on: ubuntu-latest
Expand Down
17 changes: 3 additions & 14 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM ubuntu:focal
FROM ubuntu:latest

RUN apt-get update

# disable interactive install
ENV DEBIAN_FRONTEND noninteractive
ENV DEBIAN_FRONTEND=noninteractive

# install developement tools
RUN apt-get -y install cmake
Expand All @@ -14,18 +14,7 @@ RUN apt-get -y install git
RUN apt-get -y install valgrind

# install CTL dependencies
#RUN apt-get -y install libilmbase-dev
#RUN apt-get -y install libopenexr-dev
RUN apt-get -y install zlib1g-dev
WORKDIR /usr/src/
RUN git clone https://github.com/AcademySoftwareFoundation/openexr.git
WORKDIR /usr/src/openexr
RUN git checkout RB-2.5
WORKDIR /usr/src/openexr/build
RUN cmake ..
RUN make
RUN make install

RUN apt-get -y install libopenexr-dev
RUN apt-get -y install libtiff-dev

# build CTL
Expand Down
57 changes: 0 additions & 57 deletions Dockerfile_openexr3

This file was deleted.

2 changes: 1 addition & 1 deletion docker/Dockerfile_ubuntu_18.04
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM ubuntu:18.04
RUN apt-get update

# disable interactive install
ENV DEBIAN_FRONTEND noninteractive
ENV DEBIAN_FRONTEND=noninteractive

# install development tools

Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile_ubuntu_20.04
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM ubuntu:20.04
RUN apt-get update

# disable interactive install
ENV DEBIAN_FRONTEND noninteractive
ENV DEBIAN_FRONTEND=noninteractive

# install developement tools
RUN apt-get -y install cmake
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile_ubuntu_22.04
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM ubuntu:22.04
RUN apt-get update

# disable interactive install
ENV DEBIAN_FRONTEND noninteractive
ENV DEBIAN_FRONTEND=noninteractive

# install developement tools
RUN apt-get -y install cmake
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile_ubuntu_22.04_LTO
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM ubuntu:22.04
RUN apt-get update

# disable interactive install
ENV DEBIAN_FRONTEND noninteractive
ENV DEBIAN_FRONTEND=noninteractive

# install developement tools
RUN apt-get -y install cmake
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile_ubuntu_22.04_acescontainer
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM ubuntu:22.04
RUN apt-get update

# disable interactive install
ENV DEBIAN_FRONTEND noninteractive
ENV DEBIAN_FRONTEND=noninteractive

# install developement tools
RUN apt-get -y install cmake
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile_ubuntu_22.04_brew
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM ubuntu:22.04
RUN apt-get update

# disable interactive install
ENV DEBIAN_FRONTEND noninteractive
ENV DEBIAN_FRONTEND=noninteractive

# install tools
RUN apt-get -y install curl
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile_ubuntu_22.04_no_libtiff_valgrind
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM ubuntu:22.04
RUN apt-get update

# disable interactive install
ENV DEBIAN_FRONTEND noninteractive
ENV DEBIAN_FRONTEND=noninteractive

# install developement tools
RUN apt-get -y install cmake
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile_ubuntu_22.04_openexr2_shared
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM ubuntu:22.04
RUN apt-get update

# disable interactive install
ENV DEBIAN_FRONTEND noninteractive
ENV DEBIAN_FRONTEND=noninteractive

# install developement tools
RUN apt-get -y install cmake
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile_ubuntu_22.04_openexr2_static
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM ubuntu:22.04
RUN apt-get update

# disable interactive install
ENV DEBIAN_FRONTEND noninteractive
ENV DEBIAN_FRONTEND=noninteractive

# install developement tools
RUN apt-get -y install cmake
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile_ubuntu_22.04_openexr33
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM ubuntu:22.04
RUN apt-get update

# disable interactive install
ENV DEBIAN_FRONTEND noninteractive
ENV DEBIAN_FRONTEND=noninteractive

# install developement tools
RUN apt-get -y install cmake
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile_ubuntu_latest
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM ubuntu:latest
RUN apt-get update

# disable interactive install
ENV DEBIAN_FRONTEND noninteractive
ENV DEBIAN_FRONTEND=noninteractive

# install developement tools
RUN apt-get -y install cmake
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile_ubuntu_latest_clang
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM ubuntu:latest
RUN apt-get update

# disable interactive install
ENV DEBIAN_FRONTEND noninteractive
ENV DEBIAN_FRONTEND=noninteractive

# install developement tools
RUN apt-get -y install cmake
Expand Down
Loading