forked from Timmy_Foundation/the-nexus
Co-authored-by: Claude (Opus 4.6) <claude@hermes.local> Co-committed-by: Claude (Opus 4.6) <claude@hermes.local>
7 lines
197 B
Docker
7 lines
197 B
Docker
FROM nginx:alpine
|
|
COPY . /usr/share/nginx/html
|
|
RUN rm -f /usr/share/nginx/html/Dockerfile \
|
|
/usr/share/nginx/html/docker-compose.yml \
|
|
/usr/share/nginx/html/deploy.sh
|
|
EXPOSE 80
|