We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f44336 commit 2f090f9Copy full SHA for 2f090f9
Dockerfile
@@ -1,5 +1,9 @@
1
FROM ubuntu:latest
2
3
+# can't have default values here, otherwise they'd overwrite the buildx-supplied ones
4
+ARG TARGETOS
5
+ARG TARGETARCH
6
+
7
RUN apt update && DEBIAN_FRONTEND=noninteractive apt install -y \
8
xvfb \
9
x11vnc \
@@ -36,4 +40,4 @@ ADD misc/menu.xml /etc/xdg/openbox/
36
40
37
41
CMD ["/usr/local/bin/screen-server", "run"]
38
42
39
-ADD rel/screen-server_linux-amd64 /usr/local/bin/screen-server
43
+ADD rel/screen-server_linux-$TARGETARCH /usr/local/bin/screen-server
turbobob.json
@@ -16,7 +16,9 @@
16
}
17
],
18
"os_arches": {
19
- "linux-amd64": true
+ "linux-amd64": true,
20
+ "linux-arm64": true,
21
+ "linux-arm": true
22
},
23
"docker_images": [
24
{
0 commit comments