aboutsummaryrefslogtreecommitdiffstats
path: root/extras/hs-test/docker/Dockerfile.nginx-server
blob: ecb8f590f89f72827d8c4f6cde669cf3d3eed3c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
ARG UBUNTU_VERSION

FROM ubuntu:${UBUNTU_VERSION}

RUN apt-get update \
 && apt-get install -y nginx \
 && rm -rf /var/lib/apt/lists/*

COPY resources/nginx/nginx_server_mirroring.conf /nginx.conf
COPY script/nginx_server_entrypoint.sh /usr/bin/nginx_server_entrypoint.sh

COPY resources/nginx/html/index.html /usr/share/nginx/index.html
RUN fallocate -l 10MB /usr/share/nginx/httpTestFile
RUN mkdir /usr/share/nginx/upload && chmod 777 /usr/share/nginx/upload

ENTRYPOINT ["nginx_server_entrypoint.sh"]