1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/web/ synced 2025-03-30 00:00:13 +01:00
VILLASweb/nginx/Dockerfile
Ricardo Hernandez-Montoya e201f90867 backend as module;
frontend as Docker image;
deployment configuration
2017-04-27 16:46:31 +02:00

10 lines
244 B
Docker

FROM nginx:stable
# Copy frontend files and make them accesible to nginx
RUN mkdir /www
COPY ./build /www
RUN chown nginx:nginx -R /www
RUN chmod -R 0755 /www
# Copy nginx configuration
COPY ./nginx/villas.conf /etc/nginx/conf.d/default.conf