From acb0bd89e05a61b27aa637969c2b224aa2daa047 Mon Sep 17 00:00:00 2001 From: Benjamin Palko Date: Fri, 21 Mar 2025 23:47:52 -0400 Subject: [PATCH] try alpine --- Dockerfile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 261d6c0..ce17f26 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,6 @@ -FROM scottyhardy/docker-wine:stable-9.0-20240915 +FROM alpine:3.21 + +RUN apk update && apk add wine xvfb winetricks golang ARG SQL_ADDRESS ARG SQL_ACCOUNT @@ -9,9 +11,6 @@ ARG SERVER_NAME WORKDIR /usr/src/app -# Install dependencies -RUN apt-get update && apt-get install golang-go xvfb -y - # Start display for headless wine RUN Xvfb :0 -screen 0 1024x768x16 & # Install wine dependencies