docker and deploy
This commit is contained in:
commit
00475a34d2
2 changed files with 42 additions and 0 deletions
17
Dockerfile
Normal file
17
Dockerfile
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
FROM ubuntu:24.04
|
||||
|
||||
RUN apt-get update
|
||||
|
||||
RUN apt-get install -y wget software-properties-common gnupg2 winbind xvfb
|
||||
|
||||
RUN dpkg --add-architecture i386
|
||||
RUN wget -nc https://dl.winehq.org/wine-builds/winehq.key
|
||||
RUN apt-key add winehq.key
|
||||
RUN add-apt-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ focal main'
|
||||
RUN apt-get update
|
||||
RUN apt-get install -y winehq-stable
|
||||
|
||||
RUN apt-get install -y winetricks
|
||||
|
||||
RUN apt-get clean -y
|
||||
RUN apt-get autoremove -y
|
||||
Loading…
Add table
Add a link
Reference in a new issue