Skip to content

Instantly share code, notes, and snippets.

@jensmeder
jensmeder / Dockerfile
Last active June 20, 2023 13:39
Hello World Example For Wine Mono Running in Ubuntu Docker Container
##########################################################
### ###
### The build stage that compiles the exe file ###
### ###
##########################################################
FROM ubuntu:18.04 as build_stage
# Install wget
RUN apt-get update
@jensmeder
jensmeder / Dockerfile
Last active April 7, 2023 11:29
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
@jensmeder
jensmeder / Dockerfile
Last active December 16, 2019 20:06
7-Zip (x86) in Ubuntu Docker Container
FROM i386/ubuntu:18.04
# Install wget
RUN apt-get update
RUN apt-get install -y wget
# Install Wine
RUN apt-get install -y software-properties-common gnupg2
RUN wget -nc https://dl.winehq.org/wine-builds/winehq.key
RUN apt-key add winehq.key
@jensmeder
jensmeder / Dockerfile
Last active December 16, 2019 20:06
7-Zip (x64) 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
FROM i386/alpine:3.10.2
# Wine 32Bit for running EXE
RUN apk add --no-cache wine=3.0.4-r1 freetype=2.10.0-r0
# Configure Wine
RUN winecfg
# Install wget
RUN apk add --no-cache wget=1.20.3-r0
@jensmeder
jensmeder / Dockerfile
Created November 17, 2019 19:30
Install wine in Alpine docker container
FROM i386/alpine:3.10.2
# Wine 32Bit for running EXE
RUN apk add --no-cache wine=3.0.4-r1 freetype=2.10.0-r0
# Configure Wine
RUN winecfg
@jensmeder
jensmeder / Dockerfile
Last active August 1, 2023 17:34
Install Wine Mono in Alpine Docker Container
FROM i386/alpine:3.10.2
# Wine 32Bit for running EXE
RUN apk add --no-cache wine=3.0.4-r1 freetype=2.10.0-r0
# Configure Wine
RUN winecfg
# Install wget
RUN apk add --no-cache wget=1.20.3-r0
@jensmeder
jensmeder / Dockerfile
Last active March 23, 2024 21:13
Dockerfile for running x86 applications with Wine in Alpine Docker Containers
FROM i386/alpine:3.10.2
# Wine 32Bit for running EXE
RUN apk add --no-cache wine=3.0.4-r1 freetype=2.10.0-r0
# Configure Wine
RUN winecfg
# Install wget
RUN apk add --no-cache wget=1.20.3-r0
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.StandardCopyOption;
import java.util.Map;
import java.util.List;
public class Photos {
private final Path source;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.StandardCopyOption;
import java.util.Map;
import java.util.List;
public class Photos {
private final Path source;