9 lines
162 B
Docker
9 lines
162 B
Docker
|
FROM nginx:latest
|
||
|
|
||
|
RUN apt-get update && apt-get install -y \
|
||
|
mc
|
||
|
|
||
|
COPY ./docker/config/nginx/nginx.conf /etc/nginx/nginx.conf
|
||
|
|
||
|
ENV TZ="Europe/Moscow"
|