mirror of
https://git.rwth-aachen.de/acs/public/villas/web/
synced 2025-03-30 00:00:13 +01:00
10 lines
247 B
Docker
10 lines
247 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
|