Skip to content

Instantly share code, notes, and snippets.

@whtiehack
whtiehack / Dockerfile
Created April 7, 2023 11:29 — forked from jensmeder/Dockerfile
Hello World Example For .NET 4.5.2 Running With Wine in Ubuntu Docker Container
FROM ubuntu:18.04
# Install wget
RUN apt-get update
RUN apt-get install -y wget
# Add 32-bit architecture
RUN dpkg --add-architecture i386
RUN apt-get update