Skip to content

Commit

Permalink
Merge pull request #226 from DerwenAI/docker
Browse files Browse the repository at this point in the history
docker build on GH CI behaves differently
  • Loading branch information
ceteri authored Mar 8, 2022
2 parents 5858f3b + c8308f8 commit 59e6047
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ RUN set -eux; \
FROM libs as kglab

## copy source
COPY ./requirements*.txt /opt/kglab
COPY ./kglab /opt/kglab/kglab
COPY ./dat /opt/kglab/dat
COPY ./examples /opt/kglab/examples
COPY ./test.py /opt/kglab
COPY ./sample.py /opt/kglab
COPY ./requirements*.txt /opt/kglab/
COPY ./test.py /opt/kglab/
COPY ./sample.py /opt/kglab/

## create a known user ID
RUN set -eux; \
Expand Down
6 changes: 3 additions & 3 deletions docker/Dockerfile.common
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ RUN set -eux; \
FROM libs as kglab

## copy source
COPY ./requirements*.txt /opt/kglab
COPY ./kglab /opt/kglab/kglab
COPY ./dat /opt/kglab/dat
COPY ./examples /opt/kglab/examples
COPY ./test.py /opt/kglab
COPY ./sample.py /opt/kglab
COPY ./requirements*.txt /opt/kglab/
COPY ./test.py /opt/kglab/
COPY ./sample.py /opt/kglab/

## create a known user ID
RUN set -eux; \
Expand Down
6 changes: 3 additions & 3 deletions docker/testsuite.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ RUN set -eux; \
FROM libs as kglab

## copy source
COPY ./requirements*.txt /opt/kglab
COPY ./kglab /opt/kglab/kglab
COPY ./dat /opt/kglab/dat
COPY ./examples /opt/kglab/examples
COPY ./test.py /opt/kglab
COPY ./sample.py /opt/kglab
COPY ./requirements*.txt /opt/kglab/
COPY ./test.py /opt/kglab/
COPY ./sample.py /opt/kglab/

## create a known user ID
RUN set -eux; \
Expand Down

0 comments on commit 59e6047

Please sign in to comment.