Skip to content
This repository has been archived by the owner on Jun 5, 2024. It is now read-only.

Commit

Permalink
Refactor codebase for better navigation (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
wanjohiryan authored Feb 18, 2023
1 parent 3a89d04 commit 4274b46
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 41 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
uses: docker/build-push-action@v4
with:
context: ./
file: gamevm/base/Dockerfile
file: docker/nvidia/Dockerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
4 changes: 2 additions & 2 deletions .github/workflows/pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ jobs:
-
name: Build docker image with docker compose
run: |
cp gamevm/base/Dockerfile .
docker build -t wanjohiryan/qwantify:latest .
cp docker/nvidia/Dockerfile .
docker build -t qwantify:nvidia .
36 changes: 0 additions & 36 deletions .github/workflows/release.yml

This file was deleted.

4 changes: 2 additions & 2 deletions gamevm/base/Dockerfile → docker/nvidia/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ RUN wget -nv -O /usr/bin/winetricks https://raw.githubusercontent.com/Winetricks

#
# Download gecko and mono installers
COPY gamevm/base/download_gecko_and_mono.sh /root/download_gecko_and_mono.sh
COPY docker/nvidia/download_gecko_and_mono.sh /root/download_gecko_and_mono.sh
RUN chmod +x /root/download_gecko_and_mono.sh \
&& /root/download_gecko_and_mono.sh "$(dpkg -s wine-${WINE_BRANCH} | grep "^Version:\s" | awk '{print $2}' | sed -E 's/~.*$//')"

Expand All @@ -79,7 +79,7 @@ VOLUME [ "/games" ]

#
#Copy entrypoint and movr it to where warp can see
COPY gamevm/base/qwantify.sh /etc/warp/entrypoint.d/qwantify.sh
COPY docker/nvidia/qwantify.sh /etc/warp/entrypoint.d/qwantify.sh
RUN chmod +x /etc/warp/entrypoint.d/qwantify.sh

#
Expand Down
File renamed without changes.

0 comments on commit 4274b46

Please sign in to comment.