Skip to content
This repository has been archived by the owner on Dec 19, 2022. It is now read-only.

subdir #3

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 0 additions & 18 deletions .github/workflow.yml

This file was deleted.

31 changes: 31 additions & 0 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: ci

on:
push

jobs:
docker:
runs-on: ubuntu-latest
steps:
-
name: Set up QEMU
uses: docker/setup-qemu-action@v1
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
-
name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
-
name: Build and push
id: docker_build
uses: docker/build-push-action@v2
with:
push: true
tags: bdevloed/eye:latest
-
name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ RUN chmod +x /usr/local/bin/cturtle && \
mkdir eye && \
cd eye && \
curl -fsS -L -O "https://raw.githubusercontent.com/josd/eye/master/eye.zip" && \
unzip eye && ./eye/install.sh && \
cd / && \
rm -rf eye

unzip eye && \
curl -o ./eye/eye.sh.in https://raw.githubusercontent.com/josd/eye/master/eye.sh.in && \
./eye/install.sh
ENTRYPOINT ["/ep"]