aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
blob: 3930a94dd893bccd16b977f9264e8280ab7c97dc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM debian:stable-slim
MAINTAINER "Valentin Popov <info@valentineus.link>"

# Install the application
ADD ["mednafen-server_*_amd64.deb", "/tmp/mednafen-server.deb"]
RUN ["dpkg", "--install", "/tmp/mednafen-server.deb"]
RUN ["rm", "/tmp/mednafen-server.deb"]

# Configuration file
ADD ["standard.conf", "/etc/standard.conf"]

# Starting the server
CMD ["mednafen-server", "/etc/standard.conf"]
EXPOSE 4046