Skip to content

Commit 650c35c

Browse files
authored
fixes the docker publisher, also enables manual triggering (#1331)
1 parent e44cba9 commit 650c35c

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ name: Publish Docker
22
on:
33
schedule:
44
- cron: "0 4 * * *" # Every day at 4:00 a.m. UTC, midnight EDT
5+
workflow_dispatch:
56

67
jobs:
78
build:

docker/ubuntu/bionic/Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@ FROM ocaml/opam2:ubuntu-18.04
22

33
WORKDIR /home/opam
44

5-
RUN sudo add-apt-repository ppa:ivg/ghidra -y \
5+
RUN sudo apt-get update \
6+
&& sudo apt-get install software-properties-common -y \
7+
&& sudo add-apt-repository ppa:ivg/ghidra -y \
68
&& sudo apt-get install libghidra-dev -y \
79
&& sudo apt-get install libghidra-data -y \
8-
&& sudo apt-get update \
910
&& opam switch 4.09 \
1011
&& eval "$(opam env)" \
1112
&& opam remote set-url default https://opam.ocaml.org \

0 commit comments

Comments
 (0)