Skip to content

Commit 52f1e34

Browse files
authored
adds the release action for the 2.5.0 docker image (#1551)
We need to find a better way to automize it, I am very open to suggestions.
1 parent 7eb7cbf commit 52f1e34

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

.github/workflows/publish-docker-image-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ jobs:
1919
uses: docker/build-push-action@v2
2020
with:
2121
push: true
22-
tags: binaryanalysisplatform/bap:2.4.0
23-
file: docker/2.4.0/Dockerfile
22+
tags: binaryanalysisplatform/bap:2.5.0
23+
file: docker/2.5.0/Dockerfile

docker/2.5.0/Dockerfile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
FROM ocaml/opam:debian
2+
3+
WORKDIR /home/opam
4+
5+
RUN opam remote set-url default https://opam.ocaml.org \
6+
&& opam update \
7+
&& opam depext --update --install bap.2.5.0 --yes -j 1 \
8+
&& opam clean -acrs
9+
10+
ENTRYPOINT ["opam", "config", "exec", "--"]

0 commit comments

Comments
 (0)