Skip to content

Commit

Permalink
Revert image, use HTTPs URL and upgrade step action
Browse files Browse the repository at this point in the history
  • Loading branch information
kylase committed May 4, 2024
1 parent 46b3f7c commit e66c2d7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Build the Docker image
run: docker build . --file Dockerfile --tag circos:$(date +%s)
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:24.04
FROM ubuntu:23.04

ENV VERSION=0.69-9

Expand Down Expand Up @@ -28,5 +28,5 @@ RUN cpanm Clone \
Statistics::Basic \
Text::Format

RUN wget -qc http://circos.ca/distribution/circos-${VERSION}.tgz -O - | tar -xz -C /usr/lib
RUN wget https://circos.ca/distribution/circos-${VERSION}.tgz -O - | tar -xz -C /usr/lib
RUN ln -s /usr/lib/circos-${VERSION}/bin/circos /usr/local/bin/circos

0 comments on commit e66c2d7

Please sign in to comment.