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

Commit

Permalink
chore(mazurek-helper): move wayland setup to the top so i don't have …
Browse files Browse the repository at this point in the history
…to wait for everything else first
  • Loading branch information
sneexy-boi committed Sep 3, 2024
1 parent c1b7d88 commit 0485db5
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions containerfiles/mazurek-helper/Containerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
ARG IMAGE_MAJOR_VERSION=40

# Packages build for wayland window manager setups
FROM fedora:${IMAGE_MAJOR_VERSION} as wayland

COPY files/scripts/build-scripts /tmp/build-scripts

RUN chmod +x /tmp/build-scripts/wayland.sh && \
/tmp/build-scripts/wayland.sh

# Joystickwake
#FROM fedora:${IMAGE_MAJOR_VERSION} as joystickwake
#
Expand All @@ -25,14 +33,6 @@ COPY files/scripts/build-scripts /tmp/build-scripts
RUN chmod +x /tmp/build-scripts/cargo.sh && \
/tmp/build-scripts/cargo.sh

# Packages build for wayland window manager setups
FROM fedora:${IMAGE_MAJOR_VERSION} as wayland

COPY files/scripts/build-scripts /tmp/build-scripts

RUN chmod +x /tmp/build-scripts/wayland.sh && \
/tmp/build-scripts/wayland.sh

# Packages built with go
FROM fedora:${IMAGE_MAJOR_VERSION} as go

Expand Down

0 comments on commit 0485db5

Please sign in to comment.