-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add changelog
- Loading branch information
atterpac
committed
Feb 19, 2024
1 parent
6381c15
commit 461b540
Showing
3 changed files
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Use the base image | ||
FROM lscr.io/linuxserver/rdesktop:ubuntu-xfce | ||
COPY --from=golang:latest /usr/local/go/ /usr/local/go/ | ||
|
||
ENV PATH="/usr/local/go/bin:${PATH}" | ||
# Set environment variables | ||
ENV PUID=1000 | ||
ENV PGID=1000 | ||
|
||
# Set the working directory | ||
WORKDIR /app | ||
|
||
# Install Deps | ||
RUN apt-get update && \ | ||
apt-get install -y git make gcc build-essential pkg-config libgtk-3-dev libjavascriptcoregtk-4.1-dev libwebkit2gtk-4.0-dev && \ | ||
apt-get clean | ||
|
||
# Install Wails | ||
RUN git clone https://github.com/wailsapp/wails.git | ||
RUN cd wails && \ | ||
git checkout v3-alpha && \ | ||
cd v3/cmd/wails3 && \ | ||
go install | ||
# Expose ports | ||
EXPOSE 3389 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# NixOS FontSize | ||
|
||
NixOS/Wayland can cause a bug where the `font-size` css property does affect the rendered page. To fix this add the following to your devShell. | ||
|
||
```shell | ||
shellHook = with pkgs; '' | ||
export XDG_DATA_DIRS=${gsettings-desktop-schemas}/share/gsettings-schemas/${gsettings-desktop-schemas.name}:${gtk3}/share/gsettings-schemas/${gtk3.name}:$XDG_DATA_DIRS; | ||
export GIO_MODULE_DIR="${pkgs.glib-networking}/lib/gio/modules/"; | ||
''; | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters