-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
47 lines (39 loc) · 1.01 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
FROM --platform=amd64 ubuntu
ENV LANG=C.UTF-8 LANGUAGE=C.UTF-8 LC_ALL=C.UTF-8
RUN apt-get update && apt-get install -y wget curl iputils-ping vim tree htop
# OS dependencies for playwright
RUN apt-get install -y libxcb-shm0\
libx11-xcb1\
libx11-6\
libxcb1\
libxext6\
libxrandr2\
libxcomposite1\
libxcursor1\
libxdamage1\
libxfixes3\
libxi6\
libgtk-3-0\
libpangocairo-1.0-0\
libpango-1.0-0\
libatk1.0-0\
libcairo-gobject2\
libcairo2\
libgdk-pixbuf-2.0-0\
libglib2.0-0\
#liboss4-salsa-asound2\
libasound2t64\
libxrender1\
libfreetype6\
libfontconfig1\
libdbus-1-3\
libnss3\
libnspr4\
libdrm2\
libgbm1
RUN wget https://downloads.robocorp.com/rcc/releases/v13.7.1/linux64/rcc && wget https://downloads.robocorp.com/rcc/releases/v13.7.1/linux64/rccremote
RUN chmod +x rcc rccremote && mv rcc rccremote /usr/bin
RUN apt install -y tmuxp
COPY data/.tmux.conf /root/.tmux.conf
WORKDIR /data
CMD ["tail", "-f", "/dev/null"]