Skip to content

Commit 719e227

Browse files
v1
1 parent 732a665 commit 719e227

32 files changed

+8527
-8
lines changed

Dockerfile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,12 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
1414

1515
# Stage for desktop environment
1616
FROM base AS desktop
17-
# Install XFCE related packages
17+
# Install GNOME instead of XFCE
1818
RUN apt-get update && apt-get install -y --no-install-recommends \
19-
xfce4 \
20-
xfce4-goodies \
21-
xfonts-base \
19+
ubuntu-desktop-minimal \
20+
gnome-session \
21+
gnome-terminal \
22+
gnome-shell \
2223
xauth \
2324
&& rm -rf /var/lib/apt/lists/*
2425

backend/.gitignore

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
pnpm-debug.log*
8+
lerna-debug.log*
9+
10+
node_modules
11+
dist
12+
dist-ssr
13+
*.local
14+
15+
# Editor directories and files
16+
.vscode/*
17+
!.vscode/extensions.json
18+
.idea
19+
.DS_Store
20+
*.suo
21+
*.ntvs*
22+
*.njsproj
23+
*.sln
24+
*.sw?

0 commit comments

Comments
 (0)