mirror of
https://github.com/Pantonius/pantosite-astro.git
synced 2026-04-26 09:24:38 +00:00
9 lines
166 B
Docker
9 lines
166 B
Docker
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 4443 |