Files
Timothy Kim 38aaaa5834 init commit
2026-02-27 14:45:53 -05:00

14 lines
212 B
Docker

FROM nginx:alpine
# Remove default content
RUN rm -rf /usr/share/nginx/html/*
# static site
COPY static /usr/share/nginx/html
# a custom nginx config
COPY nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 80