forked from Job79/devcontainer
Compare commits
3 Commits
f4e97c5d77
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
efe72f205d | ||
|
|
28843cdb89 | ||
|
|
7adaee8f06 |
@@ -9,7 +9,9 @@ on:
|
|||||||
- "containers/rust/**"
|
- "containers/rust/**"
|
||||||
- "containers/php/**"
|
- "containers/php/**"
|
||||||
- ".gitea/workflows/fedora.yaml"
|
- ".gitea/workflows/fedora.yaml"
|
||||||
|
pull_request:
|
||||||
|
branches: ["main"]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
fedora-build:
|
fedora-build:
|
||||||
runs-on: job-latest
|
runs-on: job-latest
|
||||||
|
|||||||
@@ -37,12 +37,12 @@ jobs:
|
|||||||
build-args: TAG=${{ github.ref_name }}
|
build-args: TAG=${{ github.ref_name }}
|
||||||
outputs: type=image,oci-mediatypes=true,compression=zstd,compression-level=3,force-compression=true
|
outputs: type=image,oci-mediatypes=true,compression=zstd,compression-level=3,force-compression=true
|
||||||
|
|
||||||
- name: Build and push Flutter container
|
# - name: Build and push Flutter container
|
||||||
uses: docker/build-push-action@v5
|
# uses: docker/build-push-action@v5
|
||||||
with:
|
# with:
|
||||||
context: ./containers/flutter
|
# context: ./containers/flutter
|
||||||
file: ./containers/flutter/Containerfile
|
# file: ./containers/flutter/Containerfile
|
||||||
push: true
|
# push: true
|
||||||
tags: git.plabble.org/maurice/flutter:${{ github.ref_name }}
|
# tags: git.plabble.org/maurice/flutter:${{ github.ref_name }}
|
||||||
build-args: TAG=${{ github.ref_name }}
|
# build-args: TAG=${{ github.ref_name }}
|
||||||
outputs: type=image,oci-mediatypes=true,compression=zstd,compression-level=3,force-compression=true
|
# outputs: type=image,oci-mediatypes=true,compression=zstd,compression-level=3,force-compression=true
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
FROM git.plabble.org/maurice/fedora:main
|
FROM git.plabble.org/maurice/fedora:main
|
||||||
|
|
||||||
USER root
|
USER root
|
||||||
RUN dnf -y install dotnet-sdk-9.0
|
RUN dnf -y install dotnet-sdk-9.0 dotnet-sdk-10.0
|
||||||
|
|
||||||
COPY install-roslyn.sh /tmp/install-roslyn.sh
|
COPY install-roslyn.sh /tmp/install-roslyn.sh
|
||||||
RUN chmod +x /tmp/install-roslyn.sh && /tmp/install-roslyn.sh
|
RUN chmod +x /tmp/install-roslyn.sh && /tmp/install-roslyn.sh
|
||||||
|
|||||||
@@ -2,7 +2,6 @@ FROM quay.io/fedora/fedora:43
|
|||||||
|
|
||||||
# === install system packages ===
|
# === install system packages ===
|
||||||
RUN dnf update -y && \
|
RUN dnf update -y && \
|
||||||
dnf copr enable -y atim/lazygit && \
|
|
||||||
dnf -y install procps ping bash-completion glibc-langpack-en \
|
dnf -y install procps ping bash-completion glibc-langpack-en \
|
||||||
host-spawn dbus-launch \
|
host-spawn dbus-launch \
|
||||||
git pnpm helix zip
|
git pnpm helix zip
|
||||||
|
|||||||
@@ -1,2 +1,2 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
arg "-p 8080:8080"
|
arg "-p 5173:5173 --network dev-php"
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
FROM git.plabble.org/maurice/fedora:main
|
FROM git.plabble.org/maurice/fedora:main
|
||||||
ARG php_version="8.1" # 8.4 is latest
|
ARG php_version="8.5"
|
||||||
|
|
||||||
RUN /bin/bash -c "export TERM=xterm && $(curl -fsSL https://php.new/install/linux/${php_version})"
|
RUN /bin/bash -c "export TERM=xterm && $(curl -fsSL https://php.new/install/linux/${php_version})"
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
FROM git.plabble.org/maurice/dotnet:main
|
FROM git.plabble.org/maurice/dotnet:main
|
||||||
ARG rider_version="2025.2.4"
|
ARG rider_version="2025.3.0.3"
|
||||||
ARG download_uri="https://download.jetbrains.com/rider/JetBrains.Rider-${rider_version}.tar.gz"
|
ARG download_uri="https://download.jetbrains.com/rider/JetBrains.Rider-${rider_version}.tar.gz"
|
||||||
|
|
||||||
USER root
|
USER root
|
||||||
|
|||||||
Reference in New Issue
Block a user