feature: Adds Docker building.
All checks were successful
Release code / build (push) Successful in 3m18s

This commit is contained in:
Tera << 8 2025-02-19 19:25:21 -05:00
parent 0219b23c4e
commit 408434ece8
Signed by: imterah
GPG key ID: 8FA7DD57BA6CEA37
5 changed files with 59 additions and 581 deletions

9
Dockerfile Normal file
View file

@ -0,0 +1,9 @@
FROM node:lts AS build
WORKDIR /build
COPY . /build
RUN npm install --save-dev
RUN npm run build
FROM httpd:2.4 AS run
WORKDIR /app
COPY --from=build /build/dist /usr/local/apache2/htdocs
COPY .htaccess /usr/local/apache2/htdocs