Compare commits
No commits in common. "main" and "Dockerfile-redo" have entirely different histories.
main
...
Dockerfile
2 changed files with 2 additions and 1 deletions
|
@ -16,6 +16,6 @@ jobs:
|
|||
- name: Login to Docker
|
||||
run: docker login -u kio -p ${{ secrets.LOGINKEY }} ${{ env.REGISTRY }}
|
||||
- name: build docker repository
|
||||
run: docker build --no-cache --pull . -t ${{ env.REGISTRY }}/${{ env.PUBLISH_AS }}:latest
|
||||
run: docker build . -t ${{ env.REGISTRY }}/${{ env.PUBLISH_AS }}:latest
|
||||
- name: Push to Repo Server
|
||||
run: docker push ${{ env.REGISTRY }}/${{ env.PUBLISH_AS }}:latest
|
|
@ -6,6 +6,7 @@ WORKDIR /FeDirect
|
|||
COPY --link . ./
|
||||
|
||||
RUN cargo build --release
|
||||
COPY ./target/release/fedirect .
|
||||
|
||||
FROM scratch
|
||||
COPY --from=build /FeDirect/known-software.json /FeDirect/target/release/fedirect /
|
||||
|
|
Loading…
Add table
Reference in a new issue