mirror of
https://github.com/friendica/docker
synced 2025-05-01 07:28:13 +02:00
11 lines
179 B
Docker
11 lines
179 B
Docker
FROM nginx:latest
|
|
|
|
RUN usermod -u 82 www-data
|
|
|
|
COPY ./templates /etc/nginx/conf.d/templates
|
|
COPY nginx.conf /etc/nginx/nginx.conf
|
|
|
|
COPY *.sh /
|
|
RUN chmod +x /*.sh
|
|
|
|
CMD ["/cmd.sh"]
|