aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
blob: 236b04d1499e97ff4b18a387255147e398768362 (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