This repository has been archived on 2026-02-01. You can view files and clone it, but cannot push or open issues or pull requests.
|
FROM nginx:alpine
|
|
RUN rm /etc/nginx/conf.d/default.conf
|
|
COPY nginx.conf /etc/nginx/conf.d/
|
|
COPY resume.html /usr/share/nginx/html/
|
|
EXPOSE 8080 |