-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
30 lines (22 loc) · 819 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# ----------------------------------
# Pterodactyl Core Dockerfile
# Environment: FOR WINDOWS GAMES
# ----------------------------------
FROM ubuntu:16.04
MAINTAINER Hari Narayanan, <[email protected]>
ENV DEBIAN_FRONTEND noninteractive
RUN dpkg --add-architecture i386 \
&& apt-get update \
&& apt-get upgrade -y \
&& apt-get install -y unzip curl \
&& useradd -m -d /home/container container
#RUN apt-get install -y software-properties-common && add-apt-repository -y ppa:ubuntu-wine/ppa \
# && apt-get update -y
RUN apt-get install -y wine winetricks \
&& apt-get purge -y software-properties-common \
&& apt-get autoclean -y
USER container
ENV HOME /home/container
WORKDIR /home/container
COPY ./entrypoint.sh /entrypoint.sh
CMD ["/bin/bash", "/entrypoint.sh"]