forked from ellermister/mtproxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
37 lines (30 loc) · 1.26 KB
/
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
31
32
33
34
35
36
37
FROM --platform=$TARGETPLATFORM nginx:1.23.2 AS build
#FROM nginx:1.23.2 AS build
COPY . /home/mtproxy
ENV WORKDIR=/home/mtproxy
WORKDIR /home/mtproxy
# setup config
RUN set -ex \
&& cd $WORKDIR \
&& cp src/* /usr/share/nginx/html \
&& rm -rf .git \
&& cp mtproxy-entrypoint.sh /docker-entrypoint.d/40-mtproxy-start.sh \
&& chmod +x /docker-entrypoint.d/40-mtproxy-start.sh \
&& cp -f nginx/default.conf /etc/nginx/conf.d/default.conf \
&& cp -f nginx/ip_white.conf /etc/nginx/ip_white.conf \
&& cp -f nginx/nginx.conf /etc/nginx/nginx.conf
# build mtproxy and install php
RUN set -ex \
&& apt-get update \
&& apt-get install -y --no-install-recommends git wget curl build-essential libssl-dev zlib1g-dev iproute2 php7.4-fpm vim-common net-tools ntpdate procps \
&& bash mtproxy.sh build \
&& sed -i 's/^user\s*=[^\r]\+/user = root/' /etc/php/7.4/fpm/pool.d/www.conf \
&& sed -i 's/^group\s*=[^\r]\+/group = root/' /etc/php/7.4/fpm/pool.d/www.conf \
&& rm -rf $WORKDIR/MTProxy \
&& rm -rf ~/go \
&& mkdir /run/php -p && mkdir $WORKDIR/pid \
&& apt-get purge -y git build-essential libssl-dev zlib1g-dev \
&& apt-get clean \
&& apt-get autoremove --purge -y \
&& rm -rf /var/lib/apt/lists/*
EXPOSE 80 443