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.
resume/Dockerfile

5 lines
142 B
Docker

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