all repos — website @ e339af977e5dbfeb30b8cab901d47fd1223bff73

My official website.

Add Dockerfile
Michael Kinder michael@noreply.git.foggymtndrifter.com
Tue, 22 Oct 2024 13:03:43 -0400
commit

e339af977e5dbfeb30b8cab901d47fd1223bff73

parent

e604e43a390d45b6b99b585926a1e8a4c370ebb5

1 files changed, 9 insertions(+), 0 deletions(-)

jump to
A Dockerfile

@@ -0,0 +1,9 @@

+FROM node:lts AS build +WORKDIR /app +COPY . . +RUN npm i +RUN npm run build + +FROM httpd:2.4 AS runtime +COPY --from=build /app/dist /usr/local/apache2/htdocs/ +EXPOSE 80