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 e44cba9 commit 650c35cCopy full SHA for 650c35c
.github/workflows/publish-docker-image.yml
@@ -2,6 +2,7 @@ name: Publish Docker
2
on:
3
schedule:
4
- cron: "0 4 * * *" # Every day at 4:00 a.m. UTC, midnight EDT
5
+ workflow_dispatch:
6
7
jobs:
8
build:
docker/ubuntu/bionic/Dockerfile
@@ -2,10 +2,11 @@ FROM ocaml/opam2:ubuntu-18.04
WORKDIR /home/opam
-RUN sudo add-apt-repository ppa:ivg/ghidra -y \
+RUN sudo apt-get update \
+ && sudo apt-get install software-properties-common -y \
+ && sudo add-apt-repository ppa:ivg/ghidra -y \
&& sudo apt-get install libghidra-dev -y \
9
&& sudo apt-get install libghidra-data -y \
- && sudo apt-get update \
10
&& opam switch 4.09 \
11
&& eval "$(opam env)" \
12
&& opam remote set-url default https://opam.ocaml.org \
0 commit comments