Skip to content

Instantly share code, notes, and snippets.

View adharshmk96's full-sized avatar

Adharsh M adharshmk96

View GitHub Profile
@adharshmk96
adharshmk96 / Dockerfile
Last active December 16, 2023 16:07
nextjs static generation and hosting
FROM nginx
COPY out /var/www/out
COPY nginx/nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]