boring.tools-poc/ci/docker/website/Dockerfile
Lars Hampe fa71d542b9
Some checks failed
Build and Push Docker Image / build (push) Failing after 6s
feat(website): add website placeholder and ci
2024-09-28 14:28:51 +02:00

4 lines
139 B
Docker

FROM nginx:alpine AS runtime
COPY ./ci/docker/website/nginx.conf /etc/nginx/nginx.conf
COPY ./build/website /usr/share/nginx/html
EXPOSE 80