Add a Dockerfile

This commit is contained in:
Maciej Pędzich 2024-02-23 14:13:41 +01:00
parent 87414dd6a6
commit b9f3f3b597

9
Dockerfile Normal file
View File

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