Skip to content

Commit

Permalink
fixes the docker publisher, also enables manual triggering (#1331)
Browse files Browse the repository at this point in the history
  • Loading branch information
ivg authored Jul 8, 2021
1 parent e44cba9 commit 650c35c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/publish-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name: Publish Docker
on:
schedule:
- cron: "0 4 * * *" # Every day at 4:00 a.m. UTC, midnight EDT
workflow_dispatch:

jobs:
build:
Expand Down
5 changes: 3 additions & 2 deletions docker/ubuntu/bionic/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
&& sudo apt-get install libghidra-data -y \
&& sudo apt-get update \
&& opam switch 4.09 \
&& eval "$(opam env)" \
&& opam remote set-url default https://opam.ocaml.org \
Expand Down

0 comments on commit 650c35c

Please sign in to comment.