ARG RELEASE |
ARG LAUNCHPAD_BUILD_ARCH |
LABEL org.opencontainers.image.ref.name=ubuntu |
LABEL org.opencontainers.image.version=22.04 |
ADD file:aa9b51e9f0067860cebbc9930374452d1384ec3c59badb5e4733130eedc90329 in / |
CMD ["/bin/bash"] |
RUN /bin/sh -c apt update && apt-get install unzip zip wget curl -y # buildkit |
RUN /bin/sh -c dpkg --add-architecture i386 # buildkit |
RUN /bin/sh -c mkdir -pm755 /etc/apt/keyrings # buildkit |
RUN /bin/sh -c wget -O /etc/apt/keyrings/winehq-archive.key https://dl.winehq.org/wine-builds/winehq.key # buildkit |
RUN /bin/sh -c wget -NP /etc/apt/sources.list.d/ https://dl.winehq.org/wine-builds/ubuntu/dists/jammy/winehq-jammy.sources # buildkit |
RUN /bin/sh -c apt update # buildkit |
RUN /bin/sh -c apt install --install-recommends winehq-stable -y # buildkit |
RUN /bin/sh -c echo steam steam/question select "I AGREE" | debconf-set-selections # buildkit |
RUN /bin/sh -c echo steam steam/license note '' | debconf-set-selections # buildkit |
RUN /bin/sh -c apt install wget screen -y # buildkit |
RUN /bin/sh -c mkdir -p /accserver # buildkit |
COPY ./accserver / # buildkit |
RUN /bin/sh -c mkdir -p /accweb # buildkit |
COPY ./acc-web/* /accweb/ # buildkit |
WORKDIR /accweb |
CMD ["./accweb"] |