We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2956ad9 commit a5764ecCopy full SHA for a5764ec
.github/workflows/release-docker.yml
@@ -100,7 +100,7 @@ jobs:
100
name: ${{ matrix.binary_name }}
101
path: /tmp/binary
102
103
- - run: cp /tmp/binary/scip-clang ./scip-clang
+ - run: cp /tmp/binary/scip-clang ./scip-clang && ls -l ./scip-clang
104
105
- name: Build and push by digest
106
id: build
Dockerfile
@@ -2,7 +2,7 @@ FROM ubuntu:22.04 as indexer
2
3
RUN apt-get update && apt-get install -y curl libc6-dev python3 build-essential ninja-build git cmake
4
5
-COPY scip-clang /usr/bin/scip-clang
+COPY ./scip-clang /usr/bin/scip-clang
6
RUN chmod +x /usr/bin/scip-clang && chown $(whoami) /usr/bin/scip-clang
7
8
WORKDIR /sources
0 commit comments