Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
TristanDamron committed Aug 15, 2024
1 parent 025e04f commit ac16e2e
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 16 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@ name: CI
on:
# Triggers the workflow on push or pull request events but only for the develop branch
push:
branches: [ main ]
branches: [main]
paths-ignore:
- '.gitignore'
- 'LICENSE.md'
- 'README.md'
- ".gitignore"
- "LICENSE.md"
- "README.md"
pull_request:
branches: [ main ]
branches: [main]
paths-ignore:
- '.gitignore'
- 'LICENSE.md'
- 'README.md'
- ".gitignore"
- "LICENSE.md"
- "README.md"

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
Expand All @@ -27,7 +27,7 @@ jobs:
build:
if: "!contains(github.event.head_commit.message, 'skip ci')"
# The type of runner that the job will run on
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
Expand Down
16 changes: 9 additions & 7 deletions Dockerfiles/Dockerfile.geocml-desktop
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
FROM ubuntu:22.04

ARG DEBIAN_FRONTEND=noninteractive
RUN apt update
RUN add-apt-repository ppa:deadsnakes/ppa && apt update -y


RUN useradd -d /home/user -m user

# Install xpra
ARG DEBIAN_FRONTEND=noninteractive
RUN apt install -y wget gnupg xvfb x11-xserver-utils python3 python3-pip \
&& pip3 install pyinotify \
&& echo "deb [arch=amd64] https://xpra.org/ focal main" > /etc/apt/sources.list.d/xpra.list \
&& wget -q https://xpra.org/gpg.asc -O- | apt-key add - \
&& apt update \
&& apt install -y xpra --no-install-recommends --no-install-suggests
RUN apt install -y wget gnupg xvfb x11-xserver-utils python3.9 python3-pip \
&& pip3 install pyinotify \
&& echo "deb [arch=amd64] https://xpra.org/ focal main" > /etc/apt/sources.list.d/xpra.list \
&& wget -q https://xpra.org/gpg.asc -O- | apt-key add - \
&& apt update \
&& apt install -y xpra --no-install-recommends --no-install-suggests

# Install QGIS
RUN apt install -y qgis
Expand Down

0 comments on commit ac16e2e

Please sign in to comment.