spfn-website/Dockerfile

13 lines
153 B
Text
Raw Normal View History

2025-10-16 22:09:58 +01:00
# syntax=docker/dockerfile:1
FROM nginx:alpine
WORKDIR /usr/share/nginx/html
COPY . .
2025-11-03 23:10:54 +01:00
RUN rm -rf .git
2025-10-16 22:09:58 +01:00
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]