[GH-ISSUE #41] Docker Build Fails #32

Closed
opened 2026-02-27 07:16:13 +03:00 by kerem · 1 comment
Owner

Originally created by @goughy12 on GitHub (Feb 23, 2025).
Original GitHub issue: https://github.com/JoelGMSec/EvilnoVNC/issues/41

Description

The Dockerfile uses the debian:sid-slim base image, which causes the build to fail. Changing the base image to debian:stable-slim resolves the issue and allows the build to complete successfully.

Steps to Reproduce

git clone https://github.com/JoelGMSec/EvilnoVNC
cd EvilnoVNC ; sudo chown -R 103 Downloads
sudo docker build -t joelgmsec/evilnovnc .

Image

Proposed Fix

Update the Dockerfile to use the debian:stable-slim base image:

-FROM debian:sid-slim
+FROM debian:stable-slim
Originally created by @goughy12 on GitHub (Feb 23, 2025). Original GitHub issue: https://github.com/JoelGMSec/EvilnoVNC/issues/41 #### Description The `Dockerfile` uses the `debian:sid-slim` base image, which causes the build to fail. Changing the base image to `debian:stable-slim` resolves the issue and allows the build to complete successfully. #### Steps to Reproduce ``` git clone https://github.com/JoelGMSec/EvilnoVNC cd EvilnoVNC ; sudo chown -R 103 Downloads sudo docker build -t joelgmsec/evilnovnc . ``` ![Image](https://github.com/user-attachments/assets/5ca69b6a-bdb1-4aa5-b510-f6f5e3006a99) #### Proposed Fix Update the `Dockerfile` to use the `debian:stable-slim` base image: ```diff -FROM debian:sid-slim +FROM debian:stable-slim ```
kerem closed this issue 2026-02-27 07:16:13 +03:00
Author
Owner

@JoelGMSec commented on GitHub (Mar 4, 2025):

Solved :)

<!-- gh-comment-id:2698140770 --> @JoelGMSec commented on GitHub (Mar 4, 2025): Solved :)
Sign in to join this conversation.
No labels
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/EvilnoVNC-JoelGMSec#32
No description provided.