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 0beb5e676a Reduced image size
2017-04-27 18:34:46 +02:00

10 lines
251 B
Docker

FROM nginx:stable-alpine
# 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