FROM nginx:alpine COPY frontend/assets /usr/share/nginx/html/assets/ COPY frontend/css /usr/share/nginx/html/css/ COPY frontend/js /usr/share/nginx/html/js/ COPY frontend/index.html /usr/share/nginx/html/ RUN addgroup -g 3333 -S web && \ adduser -h /web -u 3333 -G web -S web && \ chown -R web:web . USER web EXPOSE 8080